IOS 杂笔-13(appearance的巧妙使用)

Posted 吴雨欣

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS 杂笔-13(appearance的巧妙使用)相关的知识,希望对你有一定的参考价值。

技术分享
NSDictionary * attrs = @{
                             
                             NSFontAttributeName:[UIFont systemFontOfSize:13],
                             NSForegroundColorAttributeName:[UIColor grayColor]
                             
                             };
    
    NSDictionary * selectAttrs = @{
                                   
                                   NSFontAttributeName:[UIFont systemFontOfSize:12],
                                   NSForegroundColorAttributeName:[UIColor darkGrayColor]
                                   
                                   };
    
    UITabBarItem * item = [UITabBarItem appearance];
    [item setTitleTextAttributes:attrs forState:UIControlStateNormal];
    [item setTitleTextAttributes:selectAttrs forState:UIControlStateSelected];
技术分享

以上是关于IOS 杂笔-13(appearance的巧妙使用)的主要内容,如果未能解决你的问题,请参考以下文章

IOS 杂笔-16 (-(void)scrollViewDidEndScrollingAnimation:方法使用注意)

IOS 杂笔-14(被人遗忘的owner)

IOS 杂笔-14(被人遗忘的owner)

IOS 杂笔-17(堆区栈区等)

IOS杂笔- 7(类方法load与initialize的区别 浅析)

IOS 杂笔-12(类别de巧用 有便于Frame的操作)