Search code examples
iphoneiosios5ios6ios4

Change buttons' font in inputAccessorView


I can't find a way to change the font for the buttons in the inputAccessoryView. Can somebody help me with this?


Solution

  • To change the font of a UIBarButtonItem, use this:

    [buttonItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: [UIFont fontWithName:@"Helvetica-Bold" size:26.0], UITextAttributeFont,nil] forState:UIControlStateNormal];