如果想使用属性字符串来格式化字符串,使第一个单词具有不同于第二个单词的样式(例如字体)。因此我认为我可以使用 NSMutableAttributedString 。现在我有了一个UIBarButtonItem ,但是这里你只能设置标题和标题的文本属性。
我看到了 implementation ,其中 NSDictionary 用于具有多个属性。这样做的缺点是您只能为整个字符串设置格式。我需要它作为字符串的一部分。
UIBarButtonItem 中的同一个标题字符串是否可以有多种样式?
Best Answer-推荐答案 strong>
您可以使用自定义 View 初始化 UIBarButtonItem 。准备您的属性字符串,创建一个 UILabel ,将其 attributedText 设置为准备好的字符串,然后使用标签初始化按钮。
类似这样的:
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 24)];
NSAttributedString *strt = [[NSAttributedString alloc] initWithString"text"
attributes{
NSForegroundColorAttributeName : [UIColor redColor]
}];
label.attributedText = strt;
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:label];
关于ios - 在 UIBarButtonItem 标题中为字符串使用多种样式,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/32435589/
|