iOS开发之主题皮肤
最近在开发一款【公交应用】,里面有个模块涉及到主题设置,这篇文章主要谈一下个人的做法。
大概的步骤如下:
(1):整个应用依赖于一个主题管理器,主题管理器根据当前的主题配置,加载不同主题文件夹下的主题
(2):在应用的各个Controller中,涉及到需要更换主题图片或颜色的地方,由原来的硬编码方式改为从主题管理器获取(此处可以看到,虽然.xib配置UI会比编码渲染UI效率来得高,但在灵活性以及协同开发方面还是有些弱了)
(3):在主题设置Controller中,一旦切换主题,则需要像系统的通知中心发送消息(这一步的目的,主要是为了让那些已经存在的并且UI已构建完成的对象修改他们的主题)
最终的效果图见:
https://github.com/yanghua/iBus#version-102preview
首先来看看主题文件夹的目录结构:
可以看到,通常情况下主题都是预先做好的,当然了,这里因为我没有后端server,如果你的应用是拥有后端server的,那么可以做得更加强大,比如不将主题文件存储在Bundle中,而是存储在应用sandBox的Document中。这样你在应用启动的时候就可以check server 是否有新的主题包,如果有就download下来,释放到Document,这样会方便许多,而不需要在升级之后才能够使用新主题。扯远了,这里可以看到这些文件夹是蓝颜色的,而非黄颜色,可见它不是xcode project的Group,它们都是真实存储的文件夹(它们也是app的bundle的一部分,只是获取的方式有些不同罢了,这样做的目的就是为了方便组织各个主题的文件、目录结构)。
看看获取主题文件夹路径的方式:
- #define Bundle_Of_ThemeResource @"ThemeResource"
- //the path in the bundle
- #define Bundle_Path_Of_ThemeResource \
- [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:Bundle_Of_ThemeResource]
ThemeManager:
- @interface ThemeManager : NSObject
- @property (nonatomic,copy) NSString *themeName;
- @property (nonatomic,copy) NSString *themePath;
- @property (nonatomic,retain) UIColor *themeColor;
- + (ThemeManager*)sharedInstance;
- - (NSString *)changeTheme:(NSString*)themeName;
- - (UIImage*)themedImageWithName:(NSString*)imgName;
- @end
可以看到,ThemeManager对外开放了三个属性以及两个实例方法,并且ThemeManager被构建为是单例的(Single)
- - (id)init{
- if (self=[super init]) {
- [self initCurrentTheme];
- }
- return self;
- }
initCurrentTheme定义:
- - (void)initCurrentTheme{
- self.themeName=[ConfigItemDao get:@"主题设置"];
- NSString *themeColorStr=[ConfigItemDao get:self.themeName];
- self.themeColor=[UIColor parseColorFromStr:themeColorStr];
- self.themePath=[Bundle_Path_Of_ThemeResource stringByAppendingPathComponent:self.themeName];
- //init UI
- UIImage *navBarBackgroundImg=[[self themedImageWithName:@"themeColor.png"]
- resizableImageWithCapInsets:UIEdgeInsetsMake(0.0f, 0.0f, 1.0f, 1.0f)
- resizingMode:UIImageResizingModeTile];
- [[UINavigationBar appearance] setBackgroundImage:navBarBackgroundImg
- forBarMetrics:UIBarMetricsDefault];
- }
这里从sqlite中获取了主题类型、主题颜色,然后配置了主题属性,同时初始化了一致的UINavigationBar。
- UIImage *img=[UIImage imageNamed:@"img.png"];
取而代之的是:
- UIImage *img=[[ThemeManager sharedInstance] themedImageWithName@"img.png"];
来确保img.png是来自当前主题文件夹下的img.png
- - (UIImage*)themedImageWithName:(NSString*)imgName{
- if (!imgName || [imgName isEqualToString:@""]) {
- return nil;
- }
- NSString *imgPath=[self.themePath stringByAppendingPathComponent:imgName];
- return [UIImage imageWithContentsOfFile:imgPath];
- }
到主题设置界面,选择一个新主题,会调用changeTheme方法:
- - (NSString *)changeTheme:(NSString*)themeName{
- if (!themeName || [themeName isEqualToString:@""]) {
- return nil;
- }
- NSString *themePath=[Bundle_Path_Of_ThemeResource stringByAppendingPathComponent:themeName];
- if (dirExistsAtPath(themePath)) {
- self.themePath=themePath;
- //update to db
- [ConfigItemDao set:[NSMutableDictionary dictionaryWithObjects:@[@"主题设置",themeName]
- forKeys:@[@"itemKey",@"itemValue"]]];
- //init again
- [self initCurrentTheme];
- }
- return themeName;
- }
这是一个简单的ThemeManager,通常有可能会有更多的配置,比如: themedFontWithName:(NSString *)fontName 等,当然方式都是一样的。
- - (void)configUIAppearance{
- NSLog(@"base config ui ");
- }
该类默认没有实现,主要用于供sub class去 override。
- - (void)configUIAppearance{
- self.appNameLbl.strokeColor=[[ThemeManager sharedInstance] themeColor];
- [self.commentBtn setBackgroundImage:[[ThemeManager sharedInstance] themedImageWithName:@"aboutBtnBG.png"]
- forState:UIControlStateNormal];
- [self.shareBtn setBackgroundImage:[[ThemeManager sharedInstance] themedImageWithName:@"aboutBtnBG.png"]
- forState:UIControlStateNormal];
- [self.developerBtn setBackgroundImage:[[ThemeManager sharedInstance] themedImageWithName:@"aboutBtnBG.png"] forState:UIControlStateNormal];
- [super configUIAppearance];
- }
可以看到,所有需要使用主题的UI控件的相关设置,都抽取出来放到了configUIAppearance中。
该方法,在所有子controller中都不会显式调用,因为在BaseController的viewDidLoad方法中以及调用了。这样,如果子类override了它,就会调用子类的,如果没有override,则调用BaseController的默认实现。
- - (void)registerThemeChangedNotification{
- [Default_Notification_Center addObserver:self
- selector:@selector(handleThemeChangedNotification:)
- name:Notification_For_ThemeChanged
- object:nil];
- }
同时给出消息处理的逻辑:
- - (void)handleThemeChangedNotification:(NSNotification*)notification{
- UIImage *navBarBackgroundImg=[[[ThemeManager sharedInstance] themedImageWithName:@"themeColor.png"]
- resizableImageWithCapInsets:UIEdgeInsetsMake(0.0f, 0.0f, 1.0f, 1.0f)
- resizingMode:UIImageResizingModeTile];
- [self.navigationController.navigationBar setBackgroundImage:navBarBackgroundImg
- forBarMetrics:UIBarMetricsDefault];
- <pre name="code" class="cpp"> [self configUIAppearance];</pre>}
可以看到这里又调用了configUIAppearance,由于继承关系,这里的self指针指向的并非BaseController实例(而是sub controller的实例),所以调用的也是sub controller的方法。所以,虽然可能还停留在“主题设置的界面”,但其他已存活的controller已经接受到了切换主题的Notification,并悄悄完成了切换。
- - (void)themeButton_touchUpIndise:(id)sender{
- //unselect
- UIButton *lastSelectedBtn=(UIButton*)[self.view viewWithTag:(Tag_Start_Index + self.currentSelectedIndex)];
- lastSelectedBtn.selected=NO;
- //select
- UIButton *selectedBtn=(UIButton*)sender;
- self.currentSelectedIndex=selectedBtn.tag - Tag_Start_Index;
- selectedBtn.selected=YES;
- [[ThemeManager sharedInstance] changeTheme:((NSDictionary*)self.themeArr[self.currentSelectedIndex]).allKeys[0]];
- //post themechanged notification
- [Default_Notification_Center postNotificationName:Notification_For_ThemeChanged
- object:nil];
- }
大致的流程就是这样~
iOS开发之主题皮肤的更多相关文章
- iOS 开发设计常用软件及工具整理
1, xCode 2, AppCode 3, Skech 原型设计软件 4, Hype 动画设计工具 5, fontawsome 免费图表 6, Prepo icon, images.catlog 生 ...
- IOS开发中设置导航栏主题
/** * 系统在第一次使用这个类的时候调用(1个类只会调用一次) */ + (void)initialize { // 设置导航栏主题 UINavigationBar *navBar = [UINa ...
- 【转】几点 iOS 开发技巧
[译] 几点 iOS 开发技巧 原文:iOS Programming Architecture and Design Guidelines 原文来自破船的分享 原文作者是开发界中知晓度相当高的 Mug ...
- 几点iOS开发技巧
转自I'm Allen的博客 原文:iOS Programming Architecture and Design Guidelines 原文来自破船的分享 原文作者是开发界中知晓度相当高 ...
- iOS开发之再探多线程编程:Grand Central Dispatch详解
Swift3.0相关代码已在github上更新.之前关于iOS开发多线程的内容发布过一篇博客,其中介绍了NSThread.操作队列以及GCD,介绍的不够深入.今天就以GCD为主题来全面的总结一下GCD ...
- iOS开发系列--App扩展开发
概述 从iOS 8 开始Apple引入了扩展(Extension)用于增强系统应用服务和应用之间的交互.它的出现让自定义键盘.系统分享集成等这些依靠系统服务的开发变成了可能.WWDC 2016上众多更 ...
- iOS开发系列--通讯录、蓝牙、内购、GameCenter、iCloud、Passbook系统服务开发汇总
--系统应用与系统服务 iOS开发过程中有时候难免会使用iOS内置的一些应用软件和服务,例如QQ通讯录.微信电话本会使用iOS的通讯录,一些第三方软件会在应用内发送短信等.今天将和大家一起学习如何使用 ...
- iOS开发之窥探UICollectionViewController(五) --一款炫酷的图片浏览组件
本篇博客应该算的上CollectionView的高级应用了,从iOS开发之窥探UICollectionViewController(一)到今天的(五),可谓是由浅入深的窥探了一下UICollectio ...
- iOS开发之窥探UICollectionViewController(四) --一款功能强大的自定义瀑布流
在上一篇博客中<iOS开发之窥探UICollectionViewController(三) --使用UICollectionView自定义瀑布流>,自定义瀑布流的列数,Cell的外边距,C ...
随机推荐
- Kaggle入门
Kaggle入门 1:竞赛 我们将学习如何为Kaggle竞赛生成一个提交答案(submisson).Kaggle是一个你通过完成算法和全世界机器学习从业者进行竞赛的网站.如果你的算法精度是给出数据集中 ...
- Example: Develop Web application on Baidu App Engine using CherryPy
In the past few months, I have developed two simple applications on Baidu App Engine. Compared to Go ...
- PLA能收敛的证明
题:如果资料D线性可分,PLA如何保证最后能得到最优解. 思路:假设$w_f$能够分割资料D,$w_{t+1}$经过更新$w_{t+1}=w_t + y_{n(t)}x_{n(t)}$后,与$w_f$ ...
- poj1007 qsort快排
这道题比较简单,但通过这个题我学会了使用c++内置的qsort函数用法,收获还是很大的! 首先简要介绍一下qsort函数. 1.它是快速排序,所以就是不稳定的.(不稳定意思就是张三.李四成绩都是90, ...
- Struts2 使用通配符动态请求Action
在以前的学习中,<action>元素的配置,都是用明确的配置,其name.class等属性都是一个明确的值.其实Struts2还支持class属性和method属性使用来自name属性的通 ...
- python 生成器理解
通过列表生成式,我们可以直接创建一个列表.但是,受到内存限制,列表容量肯定是有限的.而且,创建一个包含100万个元素的列表,不仅占用很大的存储空间,如果我们仅仅需要访问前面几个元素,那后面绝大多数元素 ...
- Unity 绘制多边形
最近工程需要用到一个多边形用来查看角色属性,于是就研究了下Mesh用网格做了一个.遗憾的的 UGUI 渲染不了 3D 物体,然后又用了一段时间研究了下UGUI的网格绘制. 不过终于还是完成了,虽然有些 ...
- iOS 性能测试 - FBMemoryProfiler
FBMemoryProfiler 是Facebook开源的一款用于分析iOS内存使用和检测循环引用的工具库. 脑补:http://www.cocoachina.com/ios/20160421/159 ...
- 多校联合练习赛1 Problem1005 Deque LIS+LDS 再加一系列优化
Deque Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Subm ...
- C++ Primer 学习笔记_85_模板与泛型编程 --模板特化[续]
模板与泛型编程 --模板特化[续] 三.特化成员而不特化类 除了特化整个模板之外,还能够仅仅特化push和pop成员.我们将特化push成员以复制字符数组,而且特化pop成员以释放该副本使用的内存: ...