1. 程式人生 > >IOS 雜筆-13(appearance的巧妙使用)

IOS 雜筆-13(appearance的巧妙使用)

uic nsf reg ray settitle text src con sel

技術分享
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的巧妙使用)