ios – UISegmentedControl仅在重新访问ViewController时更改文本颜色

前端之家收集整理的这篇文章主要介绍了ios – UISegmentedControl仅在重新访问ViewController时更改文本颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
更新回答.由我.

目前我的UISegmentedControl的文本颜色变化有问题;它需要在第一次加载时使用UIControlStateSelected进行更改.代码有效,但只是有条件的.当您在导航栏上使用分段控件访问页面,点击后退按钮,然后再次访问该页面时,它可以正常工作.我假设这里有继承问题.让我解释..

分段控件的位置位于导航栏的顶部.

包含SegmentedControl的ViewController的继承:
TabBarViewController(使用AppDelegate管理) – >导航控制器 – > ViewController(‘inviteSegBar’所在的位置)

这是AppDelegate.m中的代码

  1. [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithHexString:@"#669900"]];//this one sets it green.
  2. [[UINavigationBar appearance] setBackgroundColor:[UIColor whiteColor]];

这里是viewDidLoad:VC的代码,其中包含’inviteSegBar’,即所讨论的UISegmentedControl:

  1. - (void)viewDidLoad
  2. {
  3. [super viewDidLoad];
  4.  
  5. //CUSTOM APPEARANCE <below>
  6. self.navigationController.navigationBar.barTintColor = [UIColor whiteColor];
  7. self.navigationController.navigationBar.tintColor = [UIColor colorWithHexString:@"#669900"];
  8.  
  9. inviteSegBar.tintColor = [UIColor colorWithHexString:@"#333333"];
  10.  
  11. [[UISegmentedControl appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor colorWithHexString:@"#669900"]} forState:UIControlStateSelected];
  12. }

就像我说的最后一行有效,但只有当你重新访问该页面时.为什么会这样?

PS这是同样的问题,我已经在列出任何答案之前尝试过此代码.

解决方法

答案:简单地移动
  1. [[UISegmentedControl appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor colorWithHexString:@"#669900"]} forState:UIControlStateSelected];

到您的AppDelegate.m文件

猜你在找的iOS相关文章