如何在iOS应用中切换外观(或设计主题)?
我想让我的iPhone应用程序能够在皮肤(或设计主题,或外观和感觉,如木制,金属,地球颜色,男士,女士等等)之间切换。
我将准备一些包含按钮和背景图像,声音和文本颜色的皮肤,并让用户决定应用程序设置使用哪组皮肤。
实施这个的最佳做法是什么?
条件是:
我正在考虑在应用程序中创建所有UIViewController的超类,并覆盖它加载Nib文件的部分,而不是从主包加载,从保存在Document目录中的皮肤加载资源...但我不知道该怎么做...... Nib加载方法的默认行为总是从主包中加载资源,并且有关资源文件名的信息在阅读...... :(
在此先感谢您的帮助。
我不确定最佳做法..但是,如果你的应用程序不够大,那么一个结构良好的plist就是你的朋友。
最初,您可以选择:金属主题。 以下内容应该保留:
你可以有一个Singleton ThemeManager
,或者在适当的时候将一个NSDictionary
粘贴到你的一个Singleton上。
ThemeManager背后的要点是资产和主题之间的映射。
一些示例代码(直接写在SOF上..不介意语法错误):
#define kThemeMap(__x__) [[ThemeManager sharedManager] assetForCurrentTheme:__x__]
...
-(void)doUselessStuff {
UIImage* backgroundImage = [UIImage imageNamed:kThemeMap(@"FirstViewBG")];
...
}
//in the ThemeManager:
//returns the appropriate name of the asset based on current theme
-(NSString*)assetForCurrentTheme:(NSString*)asset {
//_currentTheme is an NSDictionary initialized from a plist. Plist can be downloaded, too.
NSString* newAsset = [_currentTheme objectForKey:asset];
if(newAsset == nil) {
newAsset = [_defaultTheme objectForKey:asset];
}
return asset;
}
//Let us assume the user selects Metal Theme somewhere .. Still coding ThemeManager:
-(void)selectedNewTheme:(NSString*)newTheme {
//First, get the full path of the resource .. Either The main bundle, or documents directory or elsewhere..
NSString* fullPath = ...;
self.currentTheme = [NSDictionary dictionaryWithContentsOfFile:fullPath];
}
plist文件只是一个字符串到字符串映射的字典......类似这样:
//Default.plist
@"FirstViewBG" : @"FirstViewBG_Default.png"
@"SecondViewBG" : @"SecondViewBG_Default.png"
@"WinSound" : @"WinSound_Default.aiff"
//Metal.plist
@"FirstViewBG" : @"FirstViewBG_Metal.png"
@"SecondViewBG" : @"SecondViewBG_Metal.png"
@"WinSound" : @"WinSound_Metal.aiff"
或者,你可以保存后缀,如果这对你来说足够好。但是,它需要字符串操作,通过切分扩展名 - >添加后缀 - >添加扩展名。
或者,也许让它成为一个前缀?
您可以使用方法化的imageNamed:对UIImage进行分类,使用自定义的imageNamed:而不是默认的。 在自定义方法中,按主题选择图像。
链接地址: http://www.djcxy.com/p/55837.html上一篇: How to switch skins (or design themes) in iOS app?
下一篇: Algorithm for sorting people into rooms based on age and nationality