相关疑难解决方法(0)

更改导航栏的字体

这个问题简单明了,答案很遗憾.

你怎么能改变文字的字体UINavigationBar

iphone objective-c uinavigationbar uinavigationcontroller

64
推荐指数
4
解决办法
5万
查看次数

如何在iOS 5中更改UITabBarItem中的文本颜色

在iOS 5中具有更多外观控制,我们如何更改UITabBarItem文本颜色?从默认白色到其他颜色?

编辑:工作解决方案

  [[UITabBarItem appearance] setTitleTextAttributes:
         [NSDictionary dictionaryWithObjectsAndKeys:
          [UIColor blackColor], UITextAttributeTextColor, 
          [UIColor whiteColor], UITextAttributeTextShadowColor, 
          [NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset, 
          [UIFont fontWithName:@"Rok" size:0.0], UITextAttributeFont, 
          nil] 
                                              forState:UIControlStateNormal];
Run Code Online (Sandbox Code Playgroud)

iphone xcode uitabbarcontroller uitabbar ios

27
推荐指数
3
解决办法
3万
查看次数