在 inputAccessorView 中更改按钮的字体 [关闭]

Posted

技术标签:

【中文标题】在 inputAccessorView 中更改按钮的字体 [关闭]【英文标题】:Change buttons' font in inputAccessorView [closed] 【发布时间】:2013-05-16 12:38:05 【问题描述】:

我找不到更改inputAccessoryView 中按钮字体的方法。有人可以帮我解决这个问题吗?

【问题讨论】:

_prevButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Prev" style:UIBarButtonItemStyleBordered target:self action:@selector(prevButtonClicked)] autorelease]; 我想改变这个按钮的字体 【参考方案1】:

要更改 UIBarButtonItem 的字体,请使用:

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

【讨论】:

工作正常。非常感谢!【参考方案2】:

如果您要为 ios 5.0+ 进行部署,则可以使用 UIAppearance 代理:

UIFont *font = // create your font
[[UIBarButtonItem appearanceWhenContainedIn:[UIToolbar class], [self class], nil] setTitleTextAttributes:@ UITextAttributeFont: font  forState:UIControlStateNormal];

此代码将更改您的UIViewController 子类中所有UIToolbars(包括inputAccessoryView)中所有UIBarButtonItems(又名按钮)的字体。

【讨论】:

以上是关于在 inputAccessorView 中更改按钮的字体 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

iOS:在 MFMailComposeViewController 中更改草稿按钮的颜色

如何在引导程序 4 折叠按钮中更改按钮文本

如何在多个按钮Vue中更改一个按钮的颜色

在 C# 中临时更改按钮单击时的按钮颜色

如何在 jQuery 中更改按钮的文本?

在 Iphone 中选择按钮时更改按钮的图像