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 ...
随机推荐
- jquery学习笔记之二
1.one()与bind()的区别 bind():给一个对象绑定事件,可以绑定一个事件,也可以绑定多个事件. one():跟bind一样,都是给对象绑定事件的. 如给一个按钮绑定了三个相同的click ...
- MySQL必知必会笔记<2>
[英]ben Forta著 5 1.0 *使用扩展查询* |---->select note from table where Match(note) Against('anl'); |- ...
- c#访问各数据库的providerName各驱动
在machine.config(C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/CONFIG)文件中有这么一段: <system.data> & ...
- JS中定义类的方法<转>
转载地址:http://blog.csdn.net/sdlfx/article/details/1842218 PS(个人理解): 1) 类通过prototype定义的成员(方法或属性),是每个类对象 ...
- PHP 源码加密扩展(php-beast)PHP7 版本发布
此版本主要支持PHP7,在github(https://github.com/liexusong/php-beast)上选择php7分支然后编译安装即可. 来源于:https://github.c ...
- 初学swift笔记 流程控制(五)
import Foundation ; i<=; i++ { println(i) } let str1="adl;fjasdfl;ouewrouqwperuadf" for ...
- document.ready()的用法
1.Jquery是优秀的Javascrīpt框架,$是jquery库的申明,它很不稳定(我就常遇上),换一种稳定的写法jQuery.noConflict(); jQuery(document).rea ...
- 转: JavaScript函数式编程(二)
转: JavaScript函数式编程(二) 作者: Stark伟 上一篇文章里我们提到了纯函数的概念,所谓的纯函数就是,对于相同的输入,永远会得到相同的输出,而且没有任何可观察的副作用,也不依赖外部环 ...
- 用MFC实现OpenGL编程
一.OpenGL简介 众所周知,OpenGL原先是Silicon Graphics Incorporated(SGI公司)在他们的图形工作站上开发高质量图像的接口.但最近几年它成为一个非常优秀的开放式 ...
- 【原】win7下调整分区
由于装系统时硬盘分区极度不合理,导致现在装一些比较大的开发软件根本不能装,但是又不想重装系统调整分区,而且还不想让已有的文件受到一点伤害,毕竟数据无价啊.几番搜索后,发现了一款比较好用的硬盘管理软件 ...