一步一步实现iOS主题皮肤切换效果_IOS

本文实例为大家分享了iOS主题皮肤切换代码,供大家参考,具体内容如下

1. 主题皮肤功能切换介绍
主题切换就是根据用户设置不同的主题,来动态改变用户的界面,通常会改变navigationBar背景图片、tabBar背景图片、tabBar中的按钮的图片和选中的背景图片、navigationItem.title 标题的字体颜色、UI中其他元素控件

下载源代码地址: http://xiazai.jb51.net/201609/yuanma/ThemeSkinSetup(jb51.net).rar

2.项目目录结构及实现效果截图



3. 具体实现步骤

1.将image文件夹(group)和 Skins拖入到项目工程中的资源文件夹中
2.创建BaseViewController
3.配置theme.plist
4.事项项目所需的基本框架供能,并实现主题的tableView功能
5.创建主题管理器:ThemeManager
6.自定义ThemeTabBarItem 控件
7.创建UI工厂: UIFactory
8. 实现tableView中的didSelected事件完成主题切换
9.记录用户选择的主题,以便用户下次启动时是上次设置的主题

1.创建BaseViewController

#import <UIKit/UIKit.h>
@interface BaseViewController : UIViewController 

- (void) reloadThemeImage;
@end
#import "BaseViewController.h" 

#import "ThemeManager.h"
#import "NotificationMacro.h" 

@interface BaseViewController () 

@end 

@implementation BaseViewController
- (id) init {
 if (self == [super init]) {
  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(themeChangedNotfication:) name:kThemeChangedNotification object:nil];
 } 

 [self reloadThemeImage];
 return self;
} 

- (void)viewDidLoad {
 [super viewDidLoad];
 [self reloadThemeImage];
} 

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
} 

- (void) themeChangedNotfication:(NSNotification *)notification {
 [self reloadThemeImage];
} 

- (void) reloadThemeImage {
 ThemeManager * themeManager = [ThemeManager sharedThemeManager]; 

 UIImage * navigationBackgroundImage = [themeManager themeImageWithName:@"navigationbar_background.png"];
 [self.navigationController.navigationBar setBackgroundImage:navigationBackgroundImage forBarMetrics:UIBarMetricsDefault]; 

 UIImage * tabBarBackgroundImage = [themeManager themeImageWithName:@"tabbar_background.png"];
 [self.tabBarController.tabBar setBackgroundImage:tabBarBackgroundImage];
}
@end 

2. 实现AppDelegate

#import "AppDelegate.h" 

#import "MainViewController.h"
#import "ThemeManager.h"
#import "NotificationMacro.h" 

@interface AppDelegate () 

@end 

@implementation AppDelegate 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 [self initUserDefaultConfig]; 

 MainViewController * rootViewController = [[MainViewController alloc] init];
 self.window.rootViewController = rootViewController; 

 return YES;
} 

- (void) initUserDefaultConfig {
 NSString * themeName = [[NSUserDefaults standardUserDefaults] objectForKey:kThemeNameKey];
 ThemeManager * themeManager = [ThemeManager sharedThemeManager];
 themeManager.themeName = themeName;
}</span></span> 
<span style="font-weight: normal;"><span style="font-weight: normal;">#import "MainViewController.h" 

#import "HomeViewController.h"
#import "MessageViewController.h"
#import "MineViewController.h" 

#import "UIFactory.h" 

@interface MainViewController () 

@end 

@implementation MainViewController 

- (id) init {
 if (self = [super init]) {
  [self initTabBarUI];
 } 

 return self;
} 

- (void)viewDidLoad {
 [super viewDidLoad]; 

} 

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
} 

- (void) initTabBarUI {
 // 主页
 HomeViewController * homeViewController = [[HomeViewController alloc] init];
 UINavigationController * homeNavigationController = [[UINavigationController alloc] initWithRootViewController:homeViewController];
// UITabBarItem * homeTabBarItem = [[UITabBarItem alloc] initWithTitle:@"主页" image:[UIImage imageNamed:@"tabbar_home"] selectedImage:[UIImage imageNamed:@"tabbar_home_selected"]];
 UITabBarItem * homeTabBarItem = [UIFactory createTabBarItemWithTitle:@"主页" imageName:@"tabbar_home" selectedImage:@"tabbar_home_selected"];
 homeNavigationController.tabBarItem = homeTabBarItem; 

 // 消息(中心)
 MessageViewController * messageViewController = [[MessageViewController alloc] init];
 UINavigationController * messageNavigationController = [[UINavigationController alloc] initWithRootViewController:messageViewController];
// UITabBarItem * messageTabBarItem = [[UITabBarItem alloc] initWithTitle:@"消息" image:[UIImage imageNamed:@"tabbar_message_center"] selectedImage:[UIImage imageNamed:@"tabbar_message_center_selected"]];
 UITabBarItem * messageTabBarItem = [UIFactory createTabBarItemWithTitle:@"消息" imageName:@"tabbar_message_center" selectedImage:@"tabbar_message_center_selected"];
 messageNavigationController.tabBarItem = messageTabBarItem; 

 // 我
 MineViewController * mineViewController = [[MineViewController alloc] init];
 UINavigationController * mineNavigationController = [[UINavigationController alloc] initWithRootViewController:mineViewController];
// UITabBarItem * mineTabBarItem = [[UITabBarItem alloc] initWithTitle:@"我" image:[UIImage imageNamed:@"tabbar_profile"] selectedImage:[UIImage imageNamed:@"tabbar_profile_selected"]];
 UITabBarItem * mineTabBarItem = [UIFactory createTabBarItemWithTitle:@"我" imageName:@"tabbar_profile" selectedImage:@"tabbar_profile_selected"]; 

 mineNavigationController.tabBarItem = mineTabBarItem;
 NSArray * viewControllers = @[homeNavigationController, messageNavigationController, mineNavigationController];
 self.viewControllers = viewControllers;
} 

@end 

3. 创建主题管理器

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h> 

@interface ThemeManager : NSObject 

@property (nonatomic, copy) NSString * themeName;   // 主题名字
@property (nonatomic, retain) NSDictionary * themePlistDict; // 主题属性列表字典 

+ (ThemeManager *) sharedThemeManager; 

- (UIImage *) themeImageWithName:(NSString *)imageName;
@end</span></span>
<span style="font-weight: normal;"><span style="font-weight: normal;">#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h> 

@interface ThemeManager : NSObject 

@property (nonatomic, copy) NSString * themeName;   // 主题名字
@property (nonatomic, retain) NSDictionary * themePlistDict; // 主题属性列表字典 

+ (ThemeManager *) sharedThemeManager; 

- (UIImage *) themeImageWithName:(NSString *)imageName;
@end
#import "ThemeManager.h"
#import "NotificationMacro.h"
static ThemeManager * sharedThemeManager; 

@implementation ThemeManager 

- (id) init {
 if(self = [super init]) {
  NSString * themePath = [[NSBundle mainBundle] pathForResource:@"theme" ofType:@"plist"];
  self.themePlistDict = [NSDictionary dictionaryWithContentsOfFile:themePath];
  self.themeName = nil;
 } 

 return self;
} 

+ (ThemeManager *) sharedThemeManager {
 @synchronized(self) {
  if (nil == sharedThemeManager) {
   sharedThemeManager = [[ThemeManager alloc] init];
  }
 } 

 return sharedThemeManager;
} 

// Override 重写themeName的set方法
- (void) setThemeName:(NSString *)themeName {
 _themeName = themeName;
} 

- (UIImage *) themeImageWithName:(NSString *)imageName {
 if (imageName == nil) {
  return nil;
 } 

 NSString * themePath = [self themePath];
 NSString * themeImagePath = [themePath stringByAppendingPathComponent:imageName];
 UIImage * themeImage = [UIImage imageWithContentsOfFile:themeImagePath]; 

 return themeImage;
} 

// 返回主题路径
- (NSString *)themePath {
 NSString * resourcePath = [[NSBundle mainBundle] resourcePath];
 if (self.themeName == nil || [self.themeName isEqualToString:@""]) {
  return resourcePath;
 } 

 NSString * themeSubPath = [self.themePlistDict objectForKey:self.themeName]; // Skins/blue
 NSString * themeFilePath = [resourcePath stringByAppendingPathComponent:themeSubPath]; // .../Skins/blue 

 return themeFilePath;
}
@end 

4. 创建主题按钮 ThemeTabBarItem

#import <UIKit/UIKit.h>
@interface ThemeTabBarItem : UITabBarItem 

@property (nonatomic, copy) NSString * imageName;
@property (nonatomic, copy) NSString * selectedImageName; 

- (id) initWithTitle:(NSString *)title imageName:(NSString *)imageName selectedImage:(NSString *)selectedImageName; 

@end </span></span> 
<span style="font-weight: normal;"><span style="font-weight: normal;">#import "ThemeTabBarItem.h"
#import "ThemeManager.h"
#import "NotificationMacro.h" 

@implementation ThemeTabBarItem 

// 初始化时注册观察者
- (id) init {
 if (self = [super init]) {
  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(themeChangedNotification:) name:kThemeChangedNotification object:nil];
 } 

 return self;
} 

- (id) initWithTitle:(NSString *)title imageName:(NSString *)imageName selectedImage:(NSString *)selectedImageName {
 if (self = [self init]) {
  self.title = title;
  self.imageName = imageName;   // 此时会调用[self setImageName:imageName] ---> [self reloadThemeImage] --->[self setImage:image]
  self.selectedImageName = selectedImageName;// 此时会调用[self setSelectedImageName:selectedImageName];
 } 

 return self;
} 

#pragma mark -
#pragma mark - Override Setter
- (void) setImageName:(NSString *)imageName {
 if (_imageName != imageName) {
  _imageName = imageName;
 } 

 [self reloadThemeImage];
} 

- (void) setSelectedImageName:(NSString *)selectedImageName {
 if (_selectedImageName != selectedImageName) {
  _selectedImageName = selectedImageName;
 } 

 [self reloadThemeImage];
} 

// 主题改变之后重新加载图片
- (void)themeChangedNotification:(NSNotification *)notification {
 [self reloadThemeImage];
} 

- (void)reloadThemeImage {
 ThemeManager * themeManager = [ThemeManager sharedThemeManager]; 

 if (self.imageName != nil) {
  UIImage * image = [themeManager themeImageWithName:self.imageName];
  [self setImage:image];
 } 

 if (self.selectedImageName != nil) {
  UIImage * selectedImage = [themeManager themeImageWithName:self.selectedImageName];
  [self setSelectedImage:selectedImage];
 }
} 

- (void) dealloc {
 [[NSNotificationCenter defaultCenter] removeObserver:self];
} 

5. 创建UI工厂

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h> 

@interface UIFactory : NSObject 

+ (UITabBarItem *) createTabBarItemWithTitle:(NSString *)title imageName:(NSString *)imageName selectedImage:(NSString *)selectedImageName; 

@end</span></span>
<span style="font-weight: normal;"><span style="font-weight: normal;">#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h> 

@interface UIFactory : NSObject 

+ (UITabBarItem *) createTabBarItemWithTitle:(NSString *)title imageName:(NSString *)imageName selectedImage:(NSString *)selectedImageName; 

@end
#import "UIFactory.h" 

#import "ThemeTabBarItem.h"
@implementation UIFactory 

+ (UITabBarItem *) createTabBarItemWithTitle:(NSString *)title imageName:(NSString *)imageName selectedImage:(NSString *)selectedImageName {
 ThemeTabBarItem * themeTabBarItem = [[ThemeTabBarItem alloc] initWithTitle:title imageName:imageName selectedImage:selectedImageName]; 

 return themeTabBarItem;
}
@end 

6. 实现选中单元格的事件

#import "BaseViewController.h" 

@interface MineViewController : BaseViewController <UITableViewDelegate, UITableViewDataSource> 

@property (weak, nonatomic) IBOutlet UITableView *tableView; 

@property (nonatomic, retain) NSMutableArray * themeDataSource;
@end
#import "BaseViewController.h" 

@interface MineViewController : BaseViewController <UITableViewDelegate, UITableViewDataSource> 

@property (weak, nonatomic) IBOutlet UITableView *tableView; 

@property (nonatomic, retain) NSMutableArray * themeDataSource;
@end
#import "MineViewController.h" 

#import "ThemeManager.h"
#import "NotificationMacro.h" 

@interface MineViewController () 

@end 

@implementation MineViewController 

- (void)viewDidLoad {
 [super viewDidLoad];
 self.title = @"我"; 

 ThemeManager * themeManager = [ThemeManager sharedThemeManager];
 _themeDataSource = [NSMutableArray arrayWithArray:themeManager.themePlistDict.allKeys];
} 

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
} 

#pragma mark -
#pragma mark - UITableViewDelegate
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 

 return self.themeDataSource.count;
} 

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
 static NSString * Identifier = @"Cell";
 UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:Identifier];
 if (cell == nil) {
  cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:Identifier];
 } 

 NSString * text = self.themeDataSource[indexPath.row];
 cell.textLabel.text = text; 

 ThemeManager * themeManager = [ThemeManager sharedThemeManager];
 NSString * currentTheme = themeManager.themeName;
 if (currentTheme == nil) {
  currentTheme = @"默认";
 }
 if ([currentTheme isEqualToString:text]) {
  cell.accessoryType = UITableViewCellAccessoryCheckmark;
 } else {
  cell.accessoryType = UITableViewCellAccessoryNone;
 } 

 return cell;
} 

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 

 ThemeManager * themeManager = [ThemeManager sharedThemeManager];
 NSString * themeName = self.themeDataSource[indexPath.row]; 

 if ([themeName isEqualToString:@"默认"]) {
  themeName = nil;
 } 

 // 记录当前主题名字
 themeManager.themeName = themeName;
 [[NSNotificationCenter defaultCenter] postNotificationName:kThemeChangedNotification object:nil]; 

 // 主题持久化
 NSUserDefaults * userDefaults = [NSUserDefaults standardUserDefaults];
 [userDefaults setObject:themeName forKey:kThemeNameKey];
 [userDefaults synchronize]; 

 // 重新加载数据显示UITableViewCellAccessoryCheckmark 显示选中的对号 v
 [self.tableView reloadData];
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索iOS主题皮肤切换
iOS皮肤切换
android 实现主题切换、vue 实现css主题切换、js实现tab切换效果、js实现图片切换效果、js 实现tap切换效果,以便于您获取更多的相关知识。

时间: 2024-10-08 01:47:37

一步一步实现iOS主题皮肤切换效果_IOS的相关文章

iOS自定义键盘切换效果_IOS

本文实例为大家分享了iOS自定义键盘切换的相关代码,供大家参考,具体内容如下 具体代码如下 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. self.title = @"小飞哥键盘"; self.textField = [[UITextField alloc] initWithFrame:CGRectMa

IOS图片设置毛玻璃效果_IOS

推荐阅读:ios毛玻璃效果的实现及图片模糊效果的三种方法 废话不多说了,直接给大家贴代码了,具体代码如下所示: // 创建需要的毛玻璃特效类型 UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; // 毛玻璃view 视图 UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blurEf

iOS图片界面翻页切换效果_IOS

先看效果: 下面贴代码: #import "ViewController.h" @interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *backgroundView; @property (strong,nonatomic) NSArray *array; @end @implementation ViewController -(NSArray *)array { if (_arra

iOS获取验证码倒计时效果_IOS

本文实例为大家分享了iOS倒计时获取验证码的具体代码,供大家参考,具体内容如下 1. 倒计时发送验证码,界面跳转计时会重置 /**重新发送短信的计时*/ -(void)fireTimer{ __block int timeout=180; //倒计时时间 dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_source_t _timer = dispatc

iOS实现侧滑栏效果_IOS

效果   源码:https://github.com/YouXianMing/iOS-Project-Examples 中的 SideViewController  // // ViewController.m // SideViewController // // Created by YouXianMing on 16/6/6. // Copyright 2016年 YouXianMing. All rights reserved. // #import "ViewController.h&

jQuery无刷新切换主题皮肤实例讲解_jquery

主题皮肤切换功能在很多网站和系统中应用,用户可以根据此功能设置自己喜欢的主题颜色风格,增强了用户体验.本文将围绕如何使用jQuery实现点击无刷新切换主题皮肤功能. 实现该功能的原理就是通过点击定义的主题样式,改变页面当前引用的主题CSS文件,并且将当前的主题样式写入cookie中或者写入数据库中,以便下次该用户重新访问页面时,调用的就是上次设置好的主题样式.准备主题皮肤样式首先,我准备了三个样式表CSS文件,分别是三种风格的主题皮肤,将其引入页面,放置在页面的<head>之间. <li

ios-大神留步!!!iOS能不能关闭GPS定位而只开启其他的定位功能?

问题描述 大神留步!!!iOS能不能关闭GPS定位而只开启其他的定位功能? 在开发过程中想要测试下,如果不开启GPS定位功能,用其他定位服务是否也能实现定位功能. 但是手机测是时候如果关闭定位服务的话,就把所有的定位功能都关闭了.有没有一种方法关闭GPS而只检测WiFi定位之类的办法,还是应该在代码中添加什么关闭GPS定位服务的代码吗??? 解决方案 iOS中GPS定位 解决方案二: 明确告诉你,你没有大量的地理信息,所以绝对不可以,你可以提示用户

一步一步实现iOS微信自动抢红包(非越狱)

题外话:此教程是一篇严肃的学术探讨类文章,仅仅用于学习研究,也请读者不要用于商业或其他非法途径上,笔者一概不负责哟~~ 好了,接下来可以进入正题了! 此教程所需要的工具/文件 yololib class-dump dumpdecrypted iOSOpenDev iTools OpenSSH(Cydia) iFile(Cydia) Cycript(Cydia) Command Line Tools Xcode 苹果开发者证书或企业证书 一台越狱的iPhone 是的,想要实现在非越狱iPhone上

iOS程序框架设计之皮肤切换功能

iOS程序框架设计之皮肤切换功能 一.引言         移动应用的开发中,有时我们会需要例如更换皮肤此类的功能,andorid采用xml配置UI的方式,这个问题或许还容易解决些,iOS的主要UI逻辑则是在代码中控制的,如果没有一个强大的框架方案,这个问题将变得非常棘手.网上也有很多诸如此类功能的优秀案例与框架,在这篇博客中,我与大家分享下我的解决方案,其中如果有不恰或者糟糕之处,希望与高人一起交流. 二.设计思路与框架         首先我的设计思路是采用通知的方式,原理可以如下理解为以下