iphone – 使用UIAppearance为UIBarButtonItem设置后退按钮的文本颜色?

iphone – 使用UIAppearance为UIBarButtonItem设置后退按钮的文本颜色?,第1张

概述我一直在使用UIAppearance定制我的UIBarButtonItems,但是我不知道如何更改后退按钮文本样式.这怎么做? 我知道如何设置背景图像: [[UIBarButtonItem appearance] setBackButtonBackgroundImage:[UIImage imageNamed:@"arrow-button-static.png"] forState: 我一直在使用UIAppearance定制我的UIbarbuttonItems,但是我不知道如何更改后退按钮的文本样式.这怎么做?

我知道如何设置背景图像:

[[UIbarbuttonItem appearance]   setBackbuttonBackgroundImage:[UIImage imagenamed:@"arrow-button-static.png"]   forState:UIControlStatenormal barMetrics:UIbarMetricsDefault];  [[UIbarbuttonItem appearance]   setBackbuttonBackgroundImage:[UIImage imagenamed:@"arrow-button-pressed.png"]   forState:UIControlStateHighlighted barMetrics:UIbarMetricsDefault];
解决方法 您不能更改仅“后退”按钮的文本属性. (或者至少,你不能在全局使用外观代理.)苹果公司显然打算将其文本与导航栏中其他按钮的文本相匹配,只有其形状(背景图像)不同.

正如@Dhruvgoel所说,你可以设置文本属性:

NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:                                       [UIcolor redcolor],UITextAttributeTextcolor,nil];[[UIbarbuttonItem appearance] setTitleTextAttributes:attributes                                             forState:UIControlStatenormal];

或者,仅在导航栏中的条形按钮:

[[UIbarbuttonItem appearanceWhenContainedIn:[UINavigationbar class],nil]            setTitleTextAttributes:attributes                                             forState:UIControlStatenormal];

有关如何在视图/视图控制器层次结构的特定部分自定义外观的更多详细信息,请参阅UIAppearance protocol docs.虽然如上所述,这不会让您全局使Back按钮文本与同一导航栏中其他按钮的不同. (你可以直接改变每一个,因为你的视图控制器出现,但这可能不是一个好主意.)

哦,对不起dment的事情啊.

总结

以上是内存溢出为你收集整理的iphone – 使用UIAppearance为UIBarButtonItem设置后退按钮的文本颜色?全部内容,希望文章能够帮你解决iphone – 使用UIAppearance为UIBarButtonItem设置后退按钮的文本颜色?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1083644.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存