├── .gitignore ├── LICENSE ├── README.md ├── YYTheme ├── YYTheme.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── YYTheme │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── tabbar │ │ ├── Contents.json │ │ ├── tab_classify_nor.imageset │ │ ├── Contents.json │ │ └── 分类.png │ │ ├── tab_classify_press.imageset │ │ ├── Contents.json │ │ └── 分类 (1).png │ │ ├── tab_community_nor.imageset │ │ ├── Contents.json │ │ └── 社区.png │ │ ├── tab_community_press.imageset │ │ ├── Contents.json │ │ └── 社区 (1).png │ │ ├── tab_home_nor.imageset │ │ ├── Contents.json │ │ └── home.png │ │ ├── tab_home_press.imageset │ │ ├── Contents.json │ │ └── home (1).png │ │ ├── tab_me_nor.imageset │ │ ├── Contents.json │ │ └── profile.png │ │ ├── tab_me_press.imageset │ │ ├── Contents.json │ │ └── profile (1).png │ │ └── tab_publish_nor.imageset │ │ ├── Contents.json │ │ └── 发布 (3).png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Main │ ├── Category │ │ ├── UIView+YYExtension.h │ │ └── UIView+YYExtension.m │ ├── Controller │ │ ├── YYAddController.h │ │ ├── YYAddController.m │ │ ├── YYAddController.xib │ │ ├── YYNavigationController.h │ │ ├── YYNavigationController.m │ │ ├── YYTabBarController.h │ │ ├── YYTabBarController.m │ │ ├── YYThemeController.h │ │ └── YYThemeController.m │ └── View │ │ ├── YYTabBar.h │ │ └── YYTabBar.m │ ├── YYTheme │ ├── NSObject+YYThemeExtension.h │ └── NSObject+YYThemeExtension.m │ └── main.m └── theme.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/README.md -------------------------------------------------------------------------------- /YYTheme/YYTheme.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YYTheme/YYTheme.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YYTheme/YYTheme/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/AppDelegate.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/AppDelegate.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_nor.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_nor.imageset/分类.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_nor.imageset/分类.png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_press.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_press.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_press.imageset/分类 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_classify_press.imageset/分类 (1).png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_nor.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_nor.imageset/社区.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_nor.imageset/社区.png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_press.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_press.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_press.imageset/社区 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_community_press.imageset/社区 (1).png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_nor.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_nor.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_nor.imageset/home.png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_press.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_press.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_press.imageset/home (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_home_press.imageset/home (1).png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_nor.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_nor.imageset/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_nor.imageset/profile.png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_press.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_press.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_press.imageset/profile (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_me_press.imageset/profile (1).png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_publish_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_publish_nor.imageset/Contents.json -------------------------------------------------------------------------------- /YYTheme/YYTheme/Assets.xcassets/tabbar/tab_publish_nor.imageset/发布 (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Assets.xcassets/tabbar/tab_publish_nor.imageset/发布 (3).png -------------------------------------------------------------------------------- /YYTheme/YYTheme/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YYTheme/YYTheme/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Info.plist -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Category/UIView+YYExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Category/UIView+YYExtension.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Category/UIView+YYExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Category/UIView+YYExtension.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYAddController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYAddController.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYAddController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYAddController.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYAddController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYAddController.xib -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYNavigationController.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYNavigationController.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYTabBarController.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYTabBarController.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYThemeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYThemeController.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/Controller/YYThemeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/Controller/YYThemeController.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/View/YYTabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/View/YYTabBar.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/Main/View/YYTabBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/Main/View/YYTabBar.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/YYTheme/NSObject+YYThemeExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/YYTheme/NSObject+YYThemeExtension.h -------------------------------------------------------------------------------- /YYTheme/YYTheme/YYTheme/NSObject+YYThemeExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/YYTheme/NSObject+YYThemeExtension.m -------------------------------------------------------------------------------- /YYTheme/YYTheme/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/YYTheme/YYTheme/main.m -------------------------------------------------------------------------------- /theme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictDog/YYTheme/HEAD/theme.gif --------------------------------------------------------------------------------