web-dev-qa-db-ja.com

UIBarButtonItemのフォントサイズをどのように設定しますか?

カスタムUIBarButtonItemでタイトルのフォントサイズを設定する方法が見つかりません。これを回避する唯一の方法は、回避したいイメージとして設定することです。他に何か提案はありますか?

36
Jim

簡単な方法では、単に:

Objective-C:

NSUInteger fontSize = 20;
UIFont *font = [UIFont boldSystemFontOfSize:fontSize];
NSDictionary *attributes = @{NSFontAttributeName: font};

UIBarButtonItem *item = [[UIBarButtonItem alloc] init];

[item setTitle:@"Some Text"];
[item setTitleTextAttributes:attributes forState:UIControlStateNormal];

self.navigationItem.rightBarButtonItem = item;

迅速:

let fontSize:CGFloat = 20;
let font:UIFont = UIFont.boldSystemFont(ofSize: fontSize);
let attributes:[String : Any] = [NSFontAttributeName: font];

let item = UIBarButtonItem.init();

item.title = "Some Text";
item.setTitleTextAttributes(attributes, for: UIControlState.normal);

self.navigationItem.rightBarButtonItem = item;
81
Mateus

UILabelを作成し、-initWithCustomView:を使用します。

3
kennytm
[[UIBarButtonItem appearance]setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                     [UIColor colorWithRed:245.0/255.0 green:245.0/255.0 blue:245.0/255.0 alpha:1.0], NSForegroundColorAttributeName,
                                                     [UIFont fontWithName:@"FONT-NAME" size:21.0], NSFontAttributeName, nil]
                                           forState:UIControlStateNormal];
2
Abo3atef

KennyTMが提案する具体的な例として、次のようなコードでUIBarButtonItemを作成します。

UILabel *txtLabel = [[UILabel alloc] initWithFrame:rect];
txtLabel.backgroundColor = [UIColor clearColor];
txtLabel.textColor = [UIColor lightGrayColor];
txtLabel.text = @"This is a custom label";
UIBarButtonItem *btnText = [[[UIBarButtonItem alloc] initWithCustomView:txtLabel] autorelease];

次に、次のようにして、UIToolbar(たとえば)の中央揃えテキストとして追加できます。

UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:rect];
toolBar.barStyle = UIBarStyleBlackTranslucent;
UIBarButtonItem *flexSpace1 = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil] autorelease];
UIBarButtonItem *flexSpace2 = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil] autorelease];

[toolBar setItems:[NSArray arrayWithItems:flexSpace1, btnText, flexSpace2, nil]];

(もちろん、適切なフォーマットを取得するには、recttxtLabelを初期化するために使用されるtoolBarが適切なサイズである必要があります......これは別の課題です!)

2
Jeff Hay

Swift5:

    let item = UIBarButtonItem(title: "", style: .plain, target: self, action: #selector(self.onItemTapped))
    let font:UIFont = UIFont(name: "", size: 18) ?? UIFont()
    item.setTitleTextAttributes([NSAttributedString.Key.font: font], for: UIControl.State.normal);
0
August Lin