├── .gitignore ├── Example ├── MZAppearance.xcodeproj │ └── project.pbxproj └── MZAppearance │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MZAppDelegate.h │ ├── MZAppDelegate.m │ ├── MZAppearance-Info.plist │ ├── MZAppearance-Prefix.pch │ ├── MZViewController.h │ ├── MZViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard │ └── main.m ├── LICENSE ├── MZAppearance.podspec ├── MZAppearance.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── MZAppearance.xcscheme ├── MZAppearance ├── Info.plist ├── MZAppearance.h ├── MZAppearance.m ├── NSInvocation+Copy.h └── NSInvocation+Copy.m ├── Package.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/MZAppearance.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MZAppearance/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/MZAppearance/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/Default.png -------------------------------------------------------------------------------- /Example/MZAppearance/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/Default@2x.png -------------------------------------------------------------------------------- /Example/MZAppearance/MZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/MZAppDelegate.h -------------------------------------------------------------------------------- /Example/MZAppearance/MZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/MZAppDelegate.m -------------------------------------------------------------------------------- /Example/MZAppearance/MZAppearance-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/MZAppearance-Info.plist -------------------------------------------------------------------------------- /Example/MZAppearance/MZAppearance-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/MZAppearance-Prefix.pch -------------------------------------------------------------------------------- /Example/MZAppearance/MZViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/MZViewController.h -------------------------------------------------------------------------------- /Example/MZAppearance/MZViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/MZViewController.m -------------------------------------------------------------------------------- /Example/MZAppearance/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/MZAppearance/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Example/MZAppearance/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Example/MZAppearance/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Example/MZAppearance/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/LICENSE -------------------------------------------------------------------------------- /MZAppearance.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance.podspec -------------------------------------------------------------------------------- /MZAppearance.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MZAppearance.xcodeproj/xcshareddata/xcschemes/MZAppearance.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance.xcodeproj/xcshareddata/xcschemes/MZAppearance.xcscheme -------------------------------------------------------------------------------- /MZAppearance/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance/Info.plist -------------------------------------------------------------------------------- /MZAppearance/MZAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance/MZAppearance.h -------------------------------------------------------------------------------- /MZAppearance/MZAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance/MZAppearance.m -------------------------------------------------------------------------------- /MZAppearance/NSInvocation+Copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance/NSInvocation+Copy.h -------------------------------------------------------------------------------- /MZAppearance/NSInvocation+Copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/MZAppearance/NSInvocation+Copy.m -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1entus/MZAppearance/HEAD/README.md --------------------------------------------------------------------------------