How do you use setTitleTextAttributes:forState in UIBarItem?(你如何在 UIBarItem 中使用 setTitleTextAttributes:forState?)
问题描述
iOS
中UIBarItem
中的setTitleTextAttributes:forState:
如何使用?
你如何设置NSDictionary
?无法使其工作,文档对此也不是很清楚.
How do you set the NSDictionary
? Can't make it work and documentation isn't very clear about that.
来自文档:
setTitleTextAttributes:forState:
为给定的控件状态设置标题的文本属性:
- (void)setTitleTextAttributes:(NSDictionary *)attributes
forState:(UIControlState)state
参数:
attributes:包含文本属性键值对的字典.您可以使用 NSString UIKit Additions Reference 中列出的键指定字体、文本颜色、文本阴影颜色和文本阴影偏移量.
attributes: A dictionary containing key-value pairs for text attributes. You can specify the font, text color, text shadow color, and text shadow offset using the keys listed in NSString UIKit Additions Reference.
state:要为其设置标题文本属性的控件状态.
state: The control state for which you want to set the text attributes for the title.
推荐答案
示例代码:
[[UIBarItem appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:220.0/255.0 green:104.0/255.0 blue:1.0/255.0 alpha:1.0], UITextAttributeTextColor,
[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0], UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"AmericanTypewriter" size:0.0], UITextAttributeFont, nil]
forState:UIControlStateNormal];
这篇关于你如何在 UIBarItem 中使用 setTitleTextAttributes:forState?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:你如何在 UIBarItem 中使用 setTitleTextAttributes:forState?
基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- Android - 如何在runOnUiThread 中将数据传递给Runnable? 2022-01-01
- 从 UIWebView 访问元数据 2022-01-01
- EditText 中的 setHintTextColor() 2022-01-01
- UINavigationItem 的持久 rightBarButtonItem 属性 2022-01-01
- 更改 UITableView 部分标题的颜色 2022-01-01
- 在视图控制器的宽度上水平均匀分布 UIButton 的最简单方法? 2022-01-01
- UINavigationBar 隐藏按钮文本 2022-01-01
- 在 iOS 7 下 CCMenu 错位 2022-01-01
- Firebase 云消息传递令牌未生成 2022-01-01