├── .gitignore ├── .travis.yml ├── Example ├── JKUBS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── JKUBS-Example.xcscheme ├── JKUBS.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── JKUBS │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── JKAViewController.h │ ├── JKAViewController.m │ ├── JKAppDelegate.h │ ├── JKAppDelegate.m │ ├── JKBViewController.h │ ├── JKBViewController.m │ ├── JKUBS+Handler.h │ ├── JKUBS+Handler.m │ ├── JKUBS-Info.plist │ ├── JKUBS-Prefix.pch │ ├── JKUBSConfig.plist │ ├── JKVC1.h │ ├── JKVC1.m │ ├── JKVC2.h │ ├── JKVC2.m │ ├── JKVC3.h │ ├── JKVC3.m │ ├── JKVC4.h │ ├── JKVC4.m │ ├── JKViewController.h │ ├── JKViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── JKUBSAspects │ │ ├── JKUBSAspects │ │ │ └── Classes │ │ │ │ ├── JKUBSAspects.h │ │ │ │ └── JKUBSAspects.m │ │ ├── LICENSE │ │ └── README.md │ ├── Local Podspecs │ │ └── JKUBS.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── JKUBS │ │ ├── Info.plist │ │ ├── JKUBS-dummy.m │ │ ├── JKUBS-prefix.pch │ │ ├── JKUBS-umbrella.h │ │ ├── JKUBS.modulemap │ │ └── JKUBS.xcconfig │ │ ├── JKUBSAspects │ │ ├── Info.plist │ │ ├── JKUBSAspects-dummy.m │ │ ├── JKUBSAspects-prefix.pch │ │ ├── JKUBSAspects-umbrella.h │ │ ├── JKUBSAspects.modulemap │ │ └── JKUBSAspects.xcconfig │ │ ├── Pods-JKUBS_Example │ │ ├── Info.plist │ │ ├── Pods-JKUBS_Example-acknowledgements.markdown │ │ ├── Pods-JKUBS_Example-acknowledgements.plist │ │ ├── Pods-JKUBS_Example-dummy.m │ │ ├── Pods-JKUBS_Example-frameworks.sh │ │ ├── Pods-JKUBS_Example-resources.sh │ │ ├── Pods-JKUBS_Example-umbrella.h │ │ ├── Pods-JKUBS_Example.debug.xcconfig │ │ ├── Pods-JKUBS_Example.modulemap │ │ └── Pods-JKUBS_Example.release.xcconfig │ │ └── Pods-JKUBS_Tests │ │ ├── Info.plist │ │ ├── Pods-JKUBS_Tests-acknowledgements.markdown │ │ ├── Pods-JKUBS_Tests-acknowledgements.plist │ │ ├── Pods-JKUBS_Tests-dummy.m │ │ ├── Pods-JKUBS_Tests-frameworks.sh │ │ ├── Pods-JKUBS_Tests-resources.sh │ │ ├── Pods-JKUBS_Tests-umbrella.h │ │ ├── Pods-JKUBS_Tests.debug.xcconfig │ │ ├── Pods-JKUBS_Tests.modulemap │ │ └── Pods-JKUBS_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── JKUBS.podspec ├── JKUBS ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── JKUBS.h │ └── JKUBS.m ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── zrCode.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/JKUBS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JKUBS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JKUBS.xcodeproj/xcshareddata/xcschemes/JKUBS-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS.xcodeproj/xcshareddata/xcschemes/JKUBS-Example.xcscheme -------------------------------------------------------------------------------- /Example/JKUBS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JKUBS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/JKUBS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/JKUBS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/JKUBS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JKUBS/JKAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKAViewController.h -------------------------------------------------------------------------------- /Example/JKUBS/JKAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKAViewController.m -------------------------------------------------------------------------------- /Example/JKUBS/JKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKAppDelegate.h -------------------------------------------------------------------------------- /Example/JKUBS/JKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKAppDelegate.m -------------------------------------------------------------------------------- /Example/JKUBS/JKBViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKBViewController.h -------------------------------------------------------------------------------- /Example/JKUBS/JKBViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKBViewController.m -------------------------------------------------------------------------------- /Example/JKUBS/JKUBS+Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKUBS+Handler.h -------------------------------------------------------------------------------- /Example/JKUBS/JKUBS+Handler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKUBS+Handler.m -------------------------------------------------------------------------------- /Example/JKUBS/JKUBS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKUBS-Info.plist -------------------------------------------------------------------------------- /Example/JKUBS/JKUBS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKUBS-Prefix.pch -------------------------------------------------------------------------------- /Example/JKUBS/JKUBSConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKUBSConfig.plist -------------------------------------------------------------------------------- /Example/JKUBS/JKVC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC1.h -------------------------------------------------------------------------------- /Example/JKUBS/JKVC1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC1.m -------------------------------------------------------------------------------- /Example/JKUBS/JKVC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC2.h -------------------------------------------------------------------------------- /Example/JKUBS/JKVC2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC2.m -------------------------------------------------------------------------------- /Example/JKUBS/JKVC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC3.h -------------------------------------------------------------------------------- /Example/JKUBS/JKVC3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC3.m -------------------------------------------------------------------------------- /Example/JKUBS/JKVC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC4.h -------------------------------------------------------------------------------- /Example/JKUBS/JKVC4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKVC4.m -------------------------------------------------------------------------------- /Example/JKUBS/JKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKViewController.h -------------------------------------------------------------------------------- /Example/JKUBS/JKViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/JKViewController.m -------------------------------------------------------------------------------- /Example/JKUBS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/JKUBS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/JKUBS/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/JKUBSAspects/JKUBSAspects/Classes/JKUBSAspects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/JKUBSAspects/JKUBSAspects/Classes/JKUBSAspects.h -------------------------------------------------------------------------------- /Example/Pods/JKUBSAspects/JKUBSAspects/Classes/JKUBSAspects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/JKUBSAspects/JKUBSAspects/Classes/JKUBSAspects.m -------------------------------------------------------------------------------- /Example/Pods/JKUBSAspects/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/JKUBSAspects/LICENSE -------------------------------------------------------------------------------- /Example/Pods/JKUBSAspects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/JKUBSAspects/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JKUBS.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Local Podspecs/JKUBS.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBS/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBS/JKUBS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBS/JKUBS-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBS/JKUBS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBS/JKUBS-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBS/JKUBS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBS/JKUBS-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBS/JKUBS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBS/JKUBS.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBS/JKUBS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBS/JKUBS.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBSAspects/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBSAspects/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/JKUBSAspects/JKUBSAspects.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Example/Pods-JKUBS_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Pods/Target Support Files/Pods-JKUBS_Tests/Pods-JKUBS_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JKUBS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/JKUBS.podspec -------------------------------------------------------------------------------- /JKUBS/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JKUBS/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JKUBS/Classes/JKUBS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/JKUBS/Classes/JKUBS.h -------------------------------------------------------------------------------- /JKUBS/Classes/JKUBS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/JKUBS/Classes/JKUBS.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /zrCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xindizhiyin2014/JKUBS/HEAD/zrCode.png --------------------------------------------------------------------------------