Swift theme color top solution

Swift theme color top solution

1. Conventional theme color usage points

Before an application is released, the theme color will be set to unify the style of the application (there may be multiple themes). There are several aspects in setting the theme color, as follows:

1. In the TabBar section, set the image highlight and text height color

2. NavigationBar part, set the navigation bar color and font color

3. Apply labels, etc., set the font color

4. Apply image theme color

The setting points of theme color are generally based on the above four aspects. The theme color of the picture can be processed by changing the picture. There are different processing methods for 1-3 items processed by code. The general processing methods are as follows:

Step 1: Separation of changes

1. Use Swift extension syntax to extend UIColor and unify the application theme color in the extension (suitable for a single theme color)

2. Write the theme color configuration into a file and parse it with the corresponding logic. This method encapsulates the theme color logic into a theme color management class (suitable for multiple themes)

Step 2: Discretely use the class encapsulated in the previous step

1. Use the UIColor method in the extension to set any theme color, including background color, text color, etc.

Here is the extension of UIColor

  1. extension UIColor {
  2.   
  3. //Theme color  
  4. class func applicationMainColor() -> UIColor {
  5. return UIColor(red: 238 / 255 , green: 64 / 255 , blue: 86 / 255 , alpha: 1 )
  6. }
  7.   
  8. //Second theme color  
  9. class func applicationSecondColor() -> UIColor {
  10. return UIColor.lightGrayColor()
  11. }
  12.   
  13. //Warning color  
  14. class func applicationWarningColor() -> UIColor {
  15. return UIColor(red: 0.1 , green: 1 , blue: 0 , alpha: 1 )
  16. }
  17.   
  18. //Link color  
  19. class func applicationLinkColor() -> UIColor {
  20. return UIColor(red: 59 / 255 , green: 89 / 255 , blue: 152 / 255 , alpha: 1 )
  21. }
  22.   
  23. }

2. TabBar theme color setting

Many applications use the TabBar control by default, but the settings of the TabBar theme color and other settings vary depending on the usage. Code creation is more flexible and it is easier to change the theme color. There is also a way to do unified processing when using Xib/Storyboard, as follows, iteratively change the default font color of the TabBar

  1. func configTabBar() {
  2. let items = self.tabBar.items
  3. for item in items as [UITabBarItem] {
  4. let dic = NSDictionary(object: UIColor.applicationMainColor(),
  5. forKey: NSForegroundColorAttributeName)
  6. item.setTitleTextAttributes(dic,
  7. forState: UIControlState.Selected)
  8. }
  9. }

Set the default selected color of TabBar images and text

self.tabBar.selectedImageTintColor = UIColor.applicationMainColor()

Tips注意事项

Changing this property's value provides visual feedback in the user interface, including the running of any associated animations. The selected item displays the tab bar item's selectedImage image, using the tab bar's selectedImageTintColor value. To prevent system coloring of an item, provide images using the UIImageRenderingModeAlwaysOriginal rendering mode.

在一些情况,正常状态为白色图片时,真机测试时,白色图片会出现偏色(显示结果为灰色),这是因为系统默认着色导致的,在创建UITabBarItem时,可通过使用UIImageRenderingModeAlwaysOriginal避免。示例代码如下:

  1. let imageNormal = UIImage(contentsOfFile: "imageNormal" )?.
  2. imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal)
  3. let imageSelected = UIImage(contentsOfFile: "imageSelected" )
  4. let tabBarItem = UITabBarItem(title: "title" ,
  5. image: imageNormal,
  6. selectedImage: imageSelected

3. Once and for all, use the Hook principle to set the NavigationBar color

NavigationBar is very commonly used in iOS applications. Its use mainly includes the following two scenarios

1. Code build directly

2. Xib/Storyboard construction

If it is built with pure code, it is relatively simple. You can directly use the extension of UIColor to set the color. In actual projects, some interfaces are created through Xib/Storyboard, and some are written in code, but this is not difficult for everyone. Use inheritance. Create a subclass that inherits from UINavigationController, and use this subclass to uniformly set the theme color. Then tell everyone in the project to force the use of UINavigationController subclasses, including Xib/Storyboard, etc. The question is what to do with old projects. This mandatory requirement can work. Is there a better way to let everyone use UINavigationController normally, and set all NavigationBars without anyone knowing? Post the code first, then explain

1. Create an extension of UIViewController

  1. extension UIViewController {
  2. func viewDidLoadForChangeTitleColor() {
  3. self.viewDidLoadForChangeTitleColor()
  4. if self.isKindOfClass(UINavigationController.classForCoder()) {
  5. self.changeNavigationBarTextColor(self as UINavigationController)
  6. }
  7. }
  8.   
  9. func changeNavigationBarTextColor(navController: UINavigationController) {
  10. let nav = navController as UINavigationController
  11. let dic = NSDictionary(object: UIColor.applicationMainColor(),
  12. forKey:NSForegroundColorAttributeName)
  13. nav.navigationBar.titleTextAttributes = dic
  14. nav.navigationBar.barTintColor = UIColor.applicationSecondColor()
  15. nav.navigationBar.tintColor = UIColor.applicationMainColor()
  16.   
  17. }
  18.   
  19. }

2. Write a tool class for Hook

  1. func swizzlingMethod(clzz: AnyClass, #oldSelector: Selector, #newSelector: Selector) {
  2. let oldMethod = class_getInstanceMethod(clzz, oldSelector)
  3. let newMethod = class_getInstanceMethod(clzz, newSelector)
  4. method_exchangeImplementations(oldMethod, newMethod)
  5. }

3. Call in AppDelegate

  1. func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
  2. swizzlingMethod(UIViewController.self,
  3. oldSelector: "viewDidLoad" ,
  4. newSelector: "viewDidLoadForChangeTitleColor" )
  5. //do others  
  6. return   true  
  7. }

4. Principle

At the program entry, through the runtime mechanism, dynamically replace the UIViewController's periodic method viewDidLoad with the method viewDidLoadForChangeTitleColor that we specify. In viewDidLoadChangeTitleColor, two things need to be done:

Call the original viewDidLoad method

· Execute code related to modifying theme color

How to call the original viewDidLoad method:

In AppDelegate, we replace the viewDidLoad and viewDidLoadForChangeTitleColor method bodies by calling the swizzlingMethod method. The principle is as follows:

As can be seen from the figure above, when executed in viewDidLoadForChangeTitleColor:

  1. self.viewDidLoadForChangeTitleColor()

It will not cause a circular call, but instead call the viewDidLoad method body that we expect to execute.

3. Xib/Storyboard processing

How to deal with some theme colors set in Xib/Storyboard, such as text color, button highlight color, etc. Take UILabel as an example and create an extension

  1. extension UILabel {
  2. var colorString: String {
  3. set(newValue) {
  4. switch newValue {
  5. case   "main" :
  6. self.textColor = UIColor.applicationMainColor()
  7. case   "second" :
  8. self.textColor = UIColor.applicationSecondColor()
  9. case   "warning" :
  10. self.textColor = UIColor.applicationWarningColor()
  11. default :
  12. self.textColor = UIColor.applicationSecondColor()
  13. }
  14. }
  15. get {
  16. return self.colorString
  17. }
  18. }
  19. }

Edit in the Xib/Storyboard inspector, as shown below:

IV. Conclusion

1. When there is only one theme, the above method can be copied and used directly. When changing the theme, you only need to change the corresponding picture and modify the extension class of UIColor.

2. When there are multiple themes and users can switch themes freely, they can hijack viewWillAppear according to the Hook mechanism in the article, and they can also easily change the theme.

Link to this article: http://www.cocoachina.com/swift/20141127/10336.html

<<:  Hello 5C, Goodbye 5C.

>>:  A 50s geek's adventurous life with radio

Recommend

WeChat Mini Programs, what kind of social ambitions does Zhang Xiaolong have?

A photo Zhang Xiaolong posted on his Moments yest...

How to write an information flow advertising creative with a CTR of 8%?

To be honest, as a veteran in the marketing indus...

Annual review | 3 key words for brand marketing in 2019

Introduction: Frequent collaborations, frequent h...

Google launches new Qaya service: Help creators easily build online stores

The new project, Qaya, co-founded by Nathaniel Na...

How does the game audio and video SDK solve the problem of echo cancellation?

Social networks have come a long way. First, text...

Let’s talk about the rise and fall of Skype

Skype, the voice, video and instant messaging app...

3,000-word guide to Tik Tok operations!

With 400 million daily active users, Douyin has a...

Xiaomi’s marketing operation is poisonous!

When it comes to the advertisements that are most...

TopNews is a high imitation of the "Today's Headlines" client

Source code introduction: TopNews is a high imita...