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:方法使用注意)