源码地址:https://github.com/iphone5solo/PYTheme
源码作者:CoderKo1o
NSObject+PYThemeExtension
pod "PYTheme"
#import <NSObject+PYThemeExtension.h>
PYTheme
文件夹中的所有文件拽入项目中#import "NSObject+PYThemeExtension.h"
// 按钮的背景色添加到主题色池中
[button py_addToThemeColorPool:@"backgroundColor"];
// 设置按钮选中时字体颜色添加到主题色池中
[button py_addToThemeColorPoolWithSelector:@selector(setTitleColor:forState:) objects:@[PYTHEME_THEME_COLOR, @(UIControlStateSelected)]];
// 设置 tabBar 选中时字体颜色添加到主题色池中
NSMutableDictionary *attrSel = [NSMutableDictionary dictionary];
attrSel[NSForegroundColorAttributeName] = PYTHEME_THEME_COLOR;
[childController.tabBarItem py_addToThemeColorPoolWithSelector:@selector(setTitleTextAttributes:forState:) objects:@[attrSel, @(UIControlStateSelected)]];
// 设置主题色为红色
[self py_setThemeColor:[UIColor redColor]];
// 添加 tabBarItem 到主题图片池中
[tabBarItem py_addToThemeImagePool];
// 重新加载主题图片,并设置主题色为红色
[self py_reloadThemeImageWithThemeColor:[UIColor redColor] setting:^(const NSArray<id> *objects) {
// 根据控件类型完成相关设置
}
UIAppearance
,否则将无法添加到主题池中
如下:将导致 navigationBar 无法添加到主题色池中
// 获取全局 navBar
UINavigationBar *navBar = [UINavigationBar appearance];
// 添加背景色到主题色池中
[navBar py_addToThemeColorPool:@"barTintColor"];
使用py_addToThemeColorPoolWithSelector:objects:
设置参数数组时注意:
如果要使图片随着主题色变化而渲染成主题颜色,需要设置RenderingMode
为: UIImageRenderingModeAlwaysTemplate
All source code is licensed under the MIT License.
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.