`
dcj3sjt126com
  • 浏览: 1868318 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

UITextAttributeTextColor = deprecated in iOS 7.0

    博客分类:
  • IOS
ios 
阅读更多

In this lesson we used the key "UITextAttributeTextColor" to change the color of the UINavigationBar appearance to white. This prompts a warning "first deprecated in iOS 7.0."

Instead:

- (void)customizeUserInterface
{
    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navBarBackground"] forBarMetrics:UIBarMetricsDefault];
    [[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], NSForegroundColorAttributeName, nil]];
}

 This should fix the warning. Oh and, this series is the bomb diggity.

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics