├── .gitignore ├── Example ├── HJViewStyle.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── HJViewStyle-Example.xcscheme ├── HJViewStyle.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── HJViewStyle │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HJAppDelegate.h │ ├── HJAppDelegate.m │ ├── HJViewController.h │ ├── HJViewController.m │ ├── HJViewStyle-Info.plist │ ├── HJViewStyle-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20-ipad.png │ │ │ ├── icon-20@2x-ipad.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29-ipad.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x-ipad.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── bg.imageset │ │ │ ├── Contents.json │ │ │ └── brooke-lark-609899-unsplash.jpg │ │ └── head.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-1.png │ │ │ └── icon.png │ ├── UIView+HJTheme.h │ ├── UIView+HJTheme.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ ├── zh-HK.lproj │ │ ├── InfoPlist.strings │ │ └── LaunchScreen.strings │ ├── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ └── LaunchScreen.strings │ └── zh-Hant.lproj │ │ ├── InfoPlist.strings │ │ └── LaunchScreen.strings ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── HJViewStyle.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── HJViewStyle │ │ ├── HJViewStyle-Info.plist │ │ ├── HJViewStyle-dummy.m │ │ ├── HJViewStyle-prefix.pch │ │ ├── HJViewStyle-umbrella.h │ │ ├── HJViewStyle.modulemap │ │ ├── HJViewStyle.xcconfig │ │ └── Info.plist │ │ ├── Pods-HJViewStyle_Example │ │ ├── Info.plist │ │ ├── Pods-HJViewStyle_Example-Info.plist │ │ ├── Pods-HJViewStyle_Example-acknowledgements.markdown │ │ ├── Pods-HJViewStyle_Example-acknowledgements.plist │ │ ├── Pods-HJViewStyle_Example-dummy.m │ │ ├── Pods-HJViewStyle_Example-frameworks.sh │ │ ├── Pods-HJViewStyle_Example-resources.sh │ │ ├── Pods-HJViewStyle_Example-umbrella.h │ │ ├── Pods-HJViewStyle_Example.debug.xcconfig │ │ ├── Pods-HJViewStyle_Example.modulemap │ │ └── Pods-HJViewStyle_Example.release.xcconfig │ │ └── Pods-HJViewStyle_Tests │ │ ├── Info.plist │ │ ├── Pods-HJViewStyle_Tests-Info.plist │ │ ├── Pods-HJViewStyle_Tests-acknowledgements.markdown │ │ ├── Pods-HJViewStyle_Tests-acknowledgements.plist │ │ ├── Pods-HJViewStyle_Tests-dummy.m │ │ ├── Pods-HJViewStyle_Tests-frameworks.sh │ │ ├── Pods-HJViewStyle_Tests-resources.sh │ │ ├── Pods-HJViewStyle_Tests-umbrella.h │ │ ├── Pods-HJViewStyle_Tests.debug.xcconfig │ │ ├── Pods-HJViewStyle_Tests.modulemap │ │ └── Pods-HJViewStyle_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ ├── en.lproj │ └── InfoPlist.strings │ ├── zh-HK.lproj │ └── InfoPlist.strings │ ├── zh-Hans.lproj │ └── InfoPlist.strings │ └── zh-Hant.lproj │ └── InfoPlist.strings ├── HJViewStyle.png ├── HJViewStyle.podspec ├── HJViewStyle ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── UIView+HJViewStyle.h │ └── UIView+HJViewStyle.m ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/HJViewStyle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HJViewStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HJViewStyle.xcodeproj/xcshareddata/xcschemes/HJViewStyle-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle.xcodeproj/xcshareddata/xcschemes/HJViewStyle-Example.xcscheme -------------------------------------------------------------------------------- /Example/HJViewStyle.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HJViewStyle.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/HJViewStyle/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/HJViewStyle/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HJViewStyle/HJAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/HJAppDelegate.h -------------------------------------------------------------------------------- /Example/HJViewStyle/HJAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/HJAppDelegate.m -------------------------------------------------------------------------------- /Example/HJViewStyle/HJViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/HJViewController.h -------------------------------------------------------------------------------- /Example/HJViewStyle/HJViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/HJViewController.m -------------------------------------------------------------------------------- /Example/HJViewStyle/HJViewStyle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/HJViewStyle-Info.plist -------------------------------------------------------------------------------- /Example/HJViewStyle/HJViewStyle-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/HJViewStyle-Prefix.pch -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/bg.imageset/Contents.json -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/bg.imageset/brooke-lark-609899-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/bg.imageset/brooke-lark-609899-unsplash.jpg -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/head.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/head.imageset/Contents.json -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/head.imageset/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/head.imageset/icon-1.png -------------------------------------------------------------------------------- /Example/HJViewStyle/Images.xcassets/head.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/Images.xcassets/head.imageset/icon.png -------------------------------------------------------------------------------- /Example/HJViewStyle/UIView+HJTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/UIView+HJTheme.h -------------------------------------------------------------------------------- /Example/HJViewStyle/UIView+HJTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/UIView+HJTheme.m -------------------------------------------------------------------------------- /Example/HJViewStyle/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HJViewStyle/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/HJViewStyle/main.m -------------------------------------------------------------------------------- /Example/HJViewStyle/zh-HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HJViewStyle/zh-HK.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/HJViewStyle/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HJViewStyle/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/HJViewStyle/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HJViewStyle/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HJViewStyle.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Local Podspecs/HJViewStyle.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/HJViewStyle-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/HJViewStyle.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/HJViewStyle.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/HJViewStyle.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/HJViewStyle.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HJViewStyle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/HJViewStyle/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Example/Pods-HJViewStyle_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Pods/Target Support Files/Pods-HJViewStyle_Tests/Pods-HJViewStyle_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/zh-HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HJViewStyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/HJViewStyle.png -------------------------------------------------------------------------------- /HJViewStyle.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/HJViewStyle.podspec -------------------------------------------------------------------------------- /HJViewStyle/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HJViewStyle/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HJViewStyle/Classes/UIView+HJViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/HJViewStyle/Classes/UIView+HJViewStyle.h -------------------------------------------------------------------------------- /HJViewStyle/Classes/UIView+HJViewStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/HJViewStyle/Classes/UIView+HJViewStyle.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyHooo/HJViewStyle/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------