码迷,mamicode.com
首页 > 移动开发 > 详细

UIAppearance

时间:2016-05-18 15:59:59      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:

1> 只要遵守了UIAppearance协议,还要实现这个方法才能调用appearance相关方法

2> 只有被UI_APPEARANCE_SELECTOR宏修饰的属性,才能设置

// 获取整个应用程序下的UITabBarItem
UITabBarItem *item = [UITabBarItem appearance];
    
// 获取某个类中的UITabBarItem
UITabBarItem *item = [UITabBarItem appearanceWhenContainedIn:self, nil];

3> 只能在控件显示之前设置才有作用

/*
   使用场景:切换夜间模式 
    
    移除整个view后,重新添加,达到刷新界面的效果
*/
[self.view removeFromSuperview];

[[UIApplication shareApplication].keyWindow addSubview:self.view];

 

UIAppearance

标签:

原文地址:http://www.cnblogs.com/sjxjjx/p/5505465.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!