lvpengwei / LVThemeKit

App 多区域皮肤 UIKit Category

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LVThemeKit

说明

App 多区域皮肤 UIKit Category

LVThemeKit/ObjC 适用于 OC 项目

LVThemeKit/Swift 适用于 Swift 项目

功能

  • UIKit Category
    • UIView
    • UIImageView
    • UILabel
    • UIButton
    • UISlider
  • QuartzCore Category
    • CALayer
    • CAShapeLayer
  • Resource
    • LVThemeColor
    • LVThemeImage
    • LVThemeString
    • LVThemeAttributedString
  • 其他,可以很容易的扩展

用法

  • UIView
// OC
self.label.viewTK.theme.backgroundColor = [LVThemeColor background];
self.label.viewTK.other.backgroundColor = [LVThemeColor otherBackground];
// Swift
label.viewTK.theme.backgroundColor = LVThemeColor.background
label.viewTK.other.backgroundColor = LVThemeColor.otherBackground
  • UIButton
// OC
[self.button.buttonTK.theme setImage:[LVThemeImage image] forState:UIControlStateNormal];
// Swift
button.buttonTK.theme.setImage(LVThemeImage.image, for: .normal)
  • CALayer
// OC
self.layer.layerTK.theme.borderColor = [LVThemeColor background];
// Swift
layer.layerTK.theme.borderColor = LVthemeColor.background

配置

  • LVThemeKitConfig
    • generators: 监听主题变化的通知数组,根据配置的数量生成主题数量
    • applyProperty: 当配置多套主题时,自定义应用顺序,默认是数组顺序
// OC
LVThemeKitConfig *conf = [[LVThemeKitConfig  alloc] init];
config.generators = @[[DayNightObserver class]];
LVThemeKit.config = conf;
// Swift
let conf = LVThemeKitConfig()
conf.generators = [DayNightObserver.self]
LVThemeKitConfig.config = conf

扩展

  • 扩展类,参考UIView/CALayer
  • 扩展属性
    • 支持 KVC,参考UIView.backgroundColor
    • 不支持 KVC,参考UIButton.setTitle:forState:
  • 替换已有的类,比如UIView.viewTK,可以新加一个属性UIView.x_viewTK

例子

安装

Cocoapods

pod 'LVThemeKit/ObjC'

或者

pod 'LVThemeKit/Swift'

类图

About

App 多区域皮肤 UIKit Category

License:MIT License


Languages

Language:Objective-C 61.4%Language:Swift 35.3%Language:Ruby 3.0%Language:Shell 0.4%