├── .gitignore ├── .travis.yml ├── CSPopKit.podspec ├── CSPopKit ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CSCustomPopManage │ ├── Basic │ │ ├── CSCustomPopControllerLoader.h │ │ ├── CSCustomPopControllerLoader.m │ │ ├── CSCustomPopHandler.h │ │ ├── CSCustomPopHandler.m │ │ ├── CSCustomPopHeader.h │ │ ├── CSCustomPopManager.h │ │ ├── CSCustomPopManager.m │ │ ├── CSCustomPopManagerHeader.h │ │ ├── CSCustomPopManagerPrivate.h │ │ ├── CSCustomPopModel.h │ │ ├── CSCustomPopModel.m │ │ ├── CSCustomPopReformer.h │ │ ├── CSCustomPopReformer.m │ │ ├── CSCustomPopView.h │ │ ├── CSCustomPopView.m │ │ ├── CSCustomPopView.xib │ │ ├── CSCustomPopViewLoader.h │ │ └── CSCustomPopViewLoader.m │ └── CSPopManager │ │ ├── CSCustomPopController.h │ │ ├── CSCustomPopController.m │ │ ├── CSPopPriorityProtocol.h │ │ ├── CSPopViewManager.h │ │ ├── CSPopViewManager.m │ │ └── CSPopViewPriority.h │ └── CSPopController │ ├── CSPopAnimation.h │ ├── CSPopAnimation.m │ ├── CSPopController.h │ ├── CSPopController.m │ ├── CSPopControllerProviderProtocol.h │ ├── CSPopPriorityProtocol.h │ ├── CSPopTheme.h │ └── CSPopTheme.m ├── Example ├── CSPopKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CSPopKit-Example.xcscheme ├── CSPopKit.xcworkspace │ └── contents.xcworkspacedata ├── CSPopKit │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CSAppDelegate.h │ ├── CSAppDelegate.m │ ├── CSPopKit-Info.plist │ ├── CSPopKit-Prefix.pch │ ├── CSViewController.h │ ├── CSViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── PopTest │ │ ├── CSCustomPopHighProprityHandler.h │ │ ├── CSCustomPopHighProprityHandler.m │ │ ├── CSCustomPopLowProprityHandler.h │ │ ├── CSCustomPopLowProprityHandler.m │ │ ├── CSCustomPopManagerTest.h │ │ ├── CSCustomPopManagerTest.m │ │ ├── CSCustomPopTestView.h │ │ ├── CSCustomPopTestView.m │ │ ├── CSCustomTestPopLoader.h │ │ ├── CSCustomTestPopLoader.m │ │ ├── CSCustomTestViewLoader.h │ │ └── CSCustomTestViewLoader.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CSPopKit.podspec.json │ ├── Manifest.lock │ ├── Masonry │ │ ├── LICENSE │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── CSPopKit │ │ ├── CSPopKit-dummy.m │ │ ├── CSPopKit-prefix.pch │ │ ├── CSPopKit-umbrella.h │ │ ├── CSPopKit.modulemap │ │ ├── CSPopKit.xcconfig │ │ ├── Info.plist │ │ └── ResourceBundle-CSPopKit-Info.plist │ │ ├── Masonry │ │ ├── Info.plist │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ ├── Masonry-umbrella.h │ │ ├── Masonry.modulemap │ │ └── Masonry.xcconfig │ │ ├── Pods-CSPopKit_Example │ │ ├── Info.plist │ │ ├── Pods-CSPopKit_Example-acknowledgements.markdown │ │ ├── Pods-CSPopKit_Example-acknowledgements.plist │ │ ├── Pods-CSPopKit_Example-dummy.m │ │ ├── Pods-CSPopKit_Example-frameworks.sh │ │ ├── Pods-CSPopKit_Example-resources.sh │ │ ├── Pods-CSPopKit_Example-umbrella.h │ │ ├── Pods-CSPopKit_Example.debug.xcconfig │ │ ├── Pods-CSPopKit_Example.modulemap │ │ └── Pods-CSPopKit_Example.release.xcconfig │ │ └── Pods-CSPopKit_Tests │ │ ├── Info.plist │ │ ├── Pods-CSPopKit_Tests-acknowledgements.markdown │ │ ├── Pods-CSPopKit_Tests-acknowledgements.plist │ │ ├── Pods-CSPopKit_Tests-dummy.m │ │ ├── Pods-CSPopKit_Tests-frameworks.sh │ │ ├── Pods-CSPopKit_Tests-resources.sh │ │ ├── Pods-CSPopKit_Tests-umbrella.h │ │ ├── Pods-CSPopKit_Tests.debug.xcconfig │ │ ├── Pods-CSPopKit_Tests.modulemap │ │ └── Pods-CSPopKit_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── README ├── 屏幕快照 2018-04-04 下午11.39.12.png ├── 屏幕快照 2018-04-04 下午11.44.53.png └── 屏幕快照 2018-04-04 下午2.03.07.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CSPopKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit.podspec -------------------------------------------------------------------------------- /CSPopKit/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSPopKit/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopControllerLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopControllerLoader.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopControllerLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopControllerLoader.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopHandler.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopHandler.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopHeader.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManager.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManager.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManagerHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManagerHeader.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopManagerPrivate.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopModel.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopModel.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopReformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopReformer.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopReformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopReformer.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopView.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopView.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopView.xib -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopViewLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopViewLoader.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopViewLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/Basic/CSCustomPopViewLoader.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSCustomPopController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSCustomPopController.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSCustomPopController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSCustomPopController.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopPriorityProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopPriorityProtocol.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopViewManager.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopViewManager.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopViewPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSCustomPopManage/CSPopManager/CSPopViewPriority.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopAnimation.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopAnimation.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopController.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopController.m -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopControllerProviderProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopControllerProviderProtocol.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopPriorityProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopPriorityProtocol.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopTheme.h -------------------------------------------------------------------------------- /CSPopKit/Classes/CSPopController/CSPopTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/CSPopKit/Classes/CSPopController/CSPopTheme.m -------------------------------------------------------------------------------- /Example/CSPopKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CSPopKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CSPopKit.xcodeproj/xcshareddata/xcschemes/CSPopKit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit.xcodeproj/xcshareddata/xcschemes/CSPopKit-Example.xcscheme -------------------------------------------------------------------------------- /Example/CSPopKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CSPopKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/CSPopKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CSPopKit/CSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/CSAppDelegate.h -------------------------------------------------------------------------------- /Example/CSPopKit/CSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/CSAppDelegate.m -------------------------------------------------------------------------------- /Example/CSPopKit/CSPopKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/CSPopKit-Info.plist -------------------------------------------------------------------------------- /Example/CSPopKit/CSPopKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/CSPopKit-Prefix.pch -------------------------------------------------------------------------------- /Example/CSPopKit/CSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/CSViewController.h -------------------------------------------------------------------------------- /Example/CSPopKit/CSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/CSViewController.m -------------------------------------------------------------------------------- /Example/CSPopKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopHighProprityHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopHighProprityHandler.h -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopHighProprityHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopHighProprityHandler.m -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopLowProprityHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopLowProprityHandler.h -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopLowProprityHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopLowProprityHandler.m -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopManagerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopManagerTest.h -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopManagerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopManagerTest.m -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopTestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopTestView.h -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomPopTestView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomPopTestView.m -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomTestPopLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomTestPopLoader.h -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomTestPopLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomTestPopLoader.m -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomTestViewLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomTestViewLoader.h -------------------------------------------------------------------------------- /Example/CSPopKit/PopTest/CSCustomTestViewLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/PopTest/CSCustomTestViewLoader.m -------------------------------------------------------------------------------- /Example/CSPopKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/CSPopKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/CSPopKit/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CSPopKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Local Podspecs/CSPopKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/CSPopKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/CSPopKit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/CSPopKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/CSPopKit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/CSPopKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/CSPopKit-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/CSPopKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/CSPopKit.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/CSPopKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/CSPopKit.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CSPopKit/ResourceBundle-CSPopKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/CSPopKit/ResourceBundle-CSPopKit-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Masonry/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Example/Pods-CSPopKit_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Pods/Target Support Files/Pods-CSPopKit_Tests/Pods-CSPopKit_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/README.md -------------------------------------------------------------------------------- /README/屏幕快照 2018-04-04 下午11.39.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/README/屏幕快照 2018-04-04 下午11.39.12.png -------------------------------------------------------------------------------- /README/屏幕快照 2018-04-04 下午11.44.53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/README/屏幕快照 2018-04-04 下午11.44.53.png -------------------------------------------------------------------------------- /README/屏幕快照 2018-04-04 下午2.03.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dormitory219/CSPopKit/HEAD/README/屏幕快照 2018-04-04 下午2.03.07.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------