├── LICENSE ├── README.md ├── WELCustomStatusbarColor.podspec ├── WELCustomStatusbarColor ├── WELCustomStatusbarColor.h └── WELCustomStatusbarColor.m ├── WELCustomStatusbarColorDemo ├── WELCustomStatusbarColorDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── welcommand.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── welcommand.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── WELCustomStatusbarColorDemo.xcscheme │ │ └── xcschememanagement.plist └── WELCustomStatusbarColorDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── WELCustomStatusbarColor │ ├── WELCustomStatusbarColor.h │ └── WELCustomStatusbarColor.m │ └── main.m └── imgRes ├── 1.png ├── 2.png ├── 3.png └── 4.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/README.md -------------------------------------------------------------------------------- /WELCustomStatusbarColor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColor.podspec -------------------------------------------------------------------------------- /WELCustomStatusbarColor/WELCustomStatusbarColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColor/WELCustomStatusbarColor.h -------------------------------------------------------------------------------- /WELCustomStatusbarColor/WELCustomStatusbarColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColor/WELCustomStatusbarColor.m -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/project.xcworkspace/xcuserdata/welcommand.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/project.xcworkspace/xcuserdata/welcommand.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/xcuserdata/welcommand.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/xcuserdata/welcommand.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/xcuserdata/welcommand.xcuserdatad/xcschemes/WELCustomStatusbarColorDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/xcuserdata/welcommand.xcuserdatad/xcschemes/WELCustomStatusbarColorDemo.xcscheme -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/xcuserdata/welcommand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo.xcodeproj/xcuserdata/welcommand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/AppDelegate.h -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/AppDelegate.m -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/Info.plist -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/ViewController.h -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/ViewController.m -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/WELCustomStatusbarColor/WELCustomStatusbarColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/WELCustomStatusbarColor/WELCustomStatusbarColor.h -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/WELCustomStatusbarColor/WELCustomStatusbarColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/WELCustomStatusbarColor/WELCustomStatusbarColor.m -------------------------------------------------------------------------------- /WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/WELCustomStatusbarColorDemo/WELCustomStatusbarColorDemo/main.m -------------------------------------------------------------------------------- /imgRes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/imgRes/1.png -------------------------------------------------------------------------------- /imgRes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/imgRes/2.png -------------------------------------------------------------------------------- /imgRes/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/imgRes/3.png -------------------------------------------------------------------------------- /imgRes/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welcommand/WELCustomStatusbarColor/HEAD/imgRes/4.png --------------------------------------------------------------------------------