ThemeManager 2.0.0

ThemeManager 2.0.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Feb 2019

Maintained by soya-bean.



  • By
  • snail-z

ThemeManager

Language Version License Platform

ThemeManager is a lightweight library for application to switching themes, support more attributes and theme extensions. more easy and convenient to use.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

  • Requires iOS 7.0 or later
  • Requires Automatic Reference Counting (ARC)

Installation

ThemeManager is available through CocoaPods. To install it, simply add the following line to your Podfile:

platform :ios, '7.0'
use_frameworks!

target 'You Project' do
    
	pod "ThemeManager", '~> 2.0'
    
end

Preview

  • Switch support images.

  • Mode during the day and night mode switch of the skin.

  • A variety of styles to switch.

  • Support fonts and transparency switches.

Usage

See demo. please wait...

Update

  • Support iPhone X

  • Support iOS 11

  • Support custom method theme switch

// When the external custom methods, you can use it.
- (void)zh_addThemePickerForSelector:(SEL)sel withArguments:(id)arguments, ...;

Note:
The all parameters must be id type. 
if the basic data types needs to be encapsulated into NSNumber; the struct type needs to be encapsulated into NSValue. 
Example:
NSNumber *number = [NSNumber numberWithInteger:2];
NSValue *value = [NSValue valueWithCGSize:CGSizeMake(100, 100)];
zhThemeColorPicker *picker = ThemeColorPickerWithKey(@"key");
[object zh_addThemePickerForSelector:@selector(setColor:Integer:setCGSize:)
		       withArguments:picker, number, value];

Author

snail-z, [email protected]

License

ThemeManager is available under the MIT license. See the LICENSE file for more info.