更改UIBarButtonItem的字体

问题描述 投票:127回答:14

我的UIBarButtonItem中有一个名为Done的UIToolbar。现在我想用Bold将字体从默认字体更改为“Trebuchet MS”。我怎样才能做到这一点?

ios cocoa-touch uibarbuttonitem
14个回答
124
投票

因为UIBarButtonItem继承自UIBarItem,所以您可以尝试

- (void)setTitleTextAttributes:(NSDictionary *)attributes
                  forState:(UIControlState)state

但这仅适用于iOS5。对于iOS 3/4,您必须使用自定义视图。


2
投票

这是正确的方法:声明你的barButtonItem(在本例中为rightBarButtonItem)并添加setTitleTextAttributes。

navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Go!", style: .plain, target: self, action: #selector(yourFuncDestination))

之后可以添加标题属性

navigationItem.rightBarButtonItem?.setTitleTextAttributes([.font : UIFont.systemFont(ofSize: 18, weight: .bold), .foregroundColor : UIColor.white], for: .normal)

你可以改变大小,重量(.bold,.heavy,.regular等)和你喜欢的颜色...希望这个帮助:)


1
投票

整个App:

if let font = UIFont(name: "AvenirNext-DemiBold", size: 15) {
        UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: font,NSForegroundColorAttributeName:TOOLBAR_TITLE_COLOR], forState: UIControlState.Normal)

    }

0
投票

UIBarButton没有与更改字体相关的属性。但是您可以使用自定义字体创建一个按钮,然后添加到UIBarButton中。它可以解决你的问题


0
投票

假设您想要支持iOS4及更早版本,最好的办法是使用initWithCustomView:方法创建一个条形按钮并提供您自己的视图,这可能类似于UIButton,您可以轻松自定义字体。

如果要使用拖放而不是以编程方式创建按钮,还可以将UIButton拖动到Interface Builder中的工具栏或导航栏上。

不幸的是,这意味着自己创建按钮背景图像。在iOS5之前无法自定义标准UIBarButtonItem的字体。


0
投票

您可以通过编程方式创建自定义UIView

UIView *buttonItemView = [[UIView alloc] initWithFrame:buttonFrame];

然后将图像,标签或任何您喜欢的内容添加到自定义视图中:

[buttonItemView addSubview:customImage];

[buttonItemView addSubview:customLabel];

...

现在把它放在你的UIBarButtomItem

UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:buttonItemView];

最后将barButtonItem添加到导航栏。


0
投票

为了完成,我想添加这个方法,仍然在2019年的Objective-C中使用。:)

_titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
_titleLabel.text = _titleBarButtonItem.title;
_titleLabel.textColor = UIColor.whiteColor;
_titleLabel.font = [UtilityMethods appFontProDisplayBold:26.0];

[_titleLabel sizeToFit];
UIBarButtonItem *titleLabelItem = [[UIBarButtonItem alloc] initWithCustomView:_titleLabel];

206
投票

确切地说,这可以如下完成

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

或者使用对象文字语法:

[buttonItem setTitleTextAttributes:@{
     NSFontAttributeName: [UIFont fontWithName:@"Helvetica-Bold" size:26.0],
     NSForegroundColorAttributeName: [UIColor greenColor]
} forState:UIControlStateNormal];

为方便起见,这是Swift实现:

buttonItem.setTitleTextAttributes([
        NSAttributedStringKey.font: UIFont(name: "Helvetica-Bold", size: 26.0)!,
        NSAttributedStringKey.foregroundColor: UIColor.green],
    for: .normal)

121
投票

对于那些有兴趣使用UIAppearance在整个应用程序中设置UIBarButtonItem字体样式的人来说,可以使用以下代码行完成:

目标C:

NSDictionary *barButtonAppearanceDict = @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Light" size:12.0], NSForegroundColorAttributeName: [UIColor whiteColor]};
[[UIBarButtonItem appearance] setTitleTextAttributes:barButtonAppearanceDict forState:UIControlStateNormal];

Swift 2.3:

UIBarButtonItem.appearance().setTitleTextAttributes(
[
    NSFontAttributeName : UIFont(name: "HelveticaNeue-Light", size: 12)!,
    NSForegroundColorAttributeName : UIColor.white
],
for: .normal)

斯威夫特3

UIBarButtonItem.appearance().setTitleTextAttributes(
[
    NSFontAttributeName : UIFont(name: "HelveticaNeue-Light", size: 12)!,
    NSForegroundColorAttributeName : UIColor.white,
], for: .normal)

斯威夫特4

UIBarButtonItem.appearance().setTitleTextAttributes(
[
    NSAttributedStringKey.font : UIFont(name: "HelveticaNeue-Light", size: 12)!,
    NSAttributedStringKey.foregroundColor : UIColor.white,
], for: .normal)

或者对于单个UIBarButtonItem(不适用于所有应用程序范围),如果您特别为一个按钮设置了自定义字体:

斯威夫特3

let barButtonItem = UIBarButton()
barButtonItem.setTitleTextAttributes([
    NSFontAttributeName : UIFont(name: "FontAwesome", size: 26)!,
    NSForegroundColorAttributeName : UIColor.white,
], for: .normal)
barButtonItem.title = "\u{f02a}"

斯威夫特4

let barButtonItem = UIBarButton()
barButtonItem.setTitleTextAttributes([
    NSAttributedStringKey.font : UIFont(name: "FontAwesome", size: 26)!,
    NSAttributedStringKey.foregroundColor : UIColor.white,
], for: .normal)
barButtonItem.title = "\u{f02a}"

当然,您可以将字体和大小更改为您想要的任何内容。我更喜欢将此代码放在AppDelegate.m部分的didFinishLaunchingWithOptions文件中。

可用属性(只需将它们添加到NSDictionary):

  • NSFontAttributeName:用UIFont更改字体
  • NSForegroundColorAttributeName:用UIColor改变颜色
  • NSShadow:添加投影(请参阅NSShadow class reference)

(针对iOS7 +更新)


19
投票

在Swift中你会这样做:

backButtonItem.setTitleTextAttributes([
        NSFontAttributeName : UIFont(name: "Helvetica-Bold", size: 26)!,
        NSForegroundColorAttributeName : UIColor.blackColor()],
    forState: UIControlState.Normal)

16
投票

以上是很好的答案。只需更新iOS7:

NSDictionary *barButtonAppearanceDict = @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Thin" size:18.0] , NSForegroundColorAttributeName: [UIColor whiteColor]};
    [[UIBarButtonItem appearance] setTitleTextAttributes:barButtonAppearanceDict forState:UIControlStateNormal];

15
投票

Swift3

  buttonName.setAttributedTitle([
        NSFontAttributeName : UIFont.systemFontOfSize(18.0),
        NSForegroundColorAttributeName : UIColor.red,NSBackgroundColorAttributeName:UIColor.black],
                                     forState: UIControlState.Normal)

迅速

   barbutton.setTitleTextAttributes([
        NSFontAttributeName : UIFont.systemFontOfSize(18.0),
        NSForegroundColorAttributeName : UIColor.redColor(),NSBackgroundColorAttributeName:UIColor.blackColor()],
        forState: UIControlState.Normal)

Objective-C的

     [ barbutton setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
        [UIFont fontWithName:@"Helvetica-Bold" size:20.0], NSFontAttributeName,
        [UIColor redColor], NSForegroundColorAttributeName,[UIColor blackColor],NSBackgroundColorAttributeName,
        nil]
        forState:UIControlStateNormal];

7
投票

要为某些UIBarButtonItems执行此操作但不是全部我推荐以下方法。

  1. 创建一个UIBarButtonItem子类。不要添加任何内容 - 您只能将它用作故事板中的自定义类及其外观代理...
  2. 在您的故事板中,将所有需要的UIBarButtonItems的自定义类更改为您的子类
  3. 在你的AppDelegate中导入你的UIBarButtonItem子类并将以下行添加到application:didFinishLaunchingWithOptions:

在我的情况下,我将UIBarButtonItem子类化为唯一的目的是加粗文本:

[[BoldBarButtonItem appearance] setTitleTextAttributes:
  [NSDictionary dictionaryWithObjectsAndKeys: 
    [UIFont boldSystemFontOfSize:18.0], NSFontAttributeName,nil] 
                                              forState:UIControlStateNormal];

7
投票

在Swift 4中,您可以通过添加以下代码来更改UIBarButtonItem的字体和颜色。

addTodoBarButton.setTitleTextAttributes(
        [
        NSAttributedStringKey.font: UIFont(name: "HelveticaNeue-Bold", size: 17)!,
        NSAttributedStringKey.foregroundColor: UIColor.black
        ], for: .normal)

2
投票

迅捷3

barButtonName.setTitleTextAttributes( [NSFontAttributeName : UIFont.systemFont(ofSize: 18.0),NSForegroundColorAttributeName : UIColor.white], for: .normal) 
© www.soinside.com 2019 - 2024. All rights reserved.