├── .DS_Store ├── .build ├── arm64-apple-macosx │ └── debug │ │ ├── SPAlertController.build │ │ └── module.modulemap │ │ └── index │ │ └── db │ │ └── v13 │ │ └── saved │ │ ├── data.mdb │ │ └── lock.mdb └── workspace-state.json ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcuserdata │ └── shengping_le.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Example ├── .DS_Store ├── SPAlertController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── leshengping.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ ├── libo.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── shengping_le.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── leshengping.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── libo.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── shengping_le.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── SPAlertController │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── publish_0.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_0@2x.png │ │ │ └── publish_0@3x.png │ │ ├── publish_1.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_1@2x.png │ │ │ └── publish_1@3x.png │ │ ├── publish_10.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_10@2x.png │ │ │ └── publish_10@3x.png │ │ ├── publish_11.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_11@2x.png │ │ │ └── publish_11@3x.png │ │ ├── publish_2.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_2@2x.png │ │ │ └── publish_2@3x.png │ │ ├── publish_3.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_3@2x.png │ │ │ └── publish_3@3x.png │ │ ├── publish_4.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_4@2x.png │ │ │ └── publish_4@3x.png │ │ ├── publish_5.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_5@2x.png │ │ │ └── publish_5@3x.png │ │ ├── publish_6.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_6@2x.png │ │ │ └── publish_6@3x.png │ │ ├── publish_7.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_7@2x.png │ │ │ └── publish_7@3x.png │ │ ├── publish_8.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_8@2x.png │ │ │ └── publish_8@3x.png │ │ ├── publish_9.imageset │ │ │ ├── Contents.json │ │ │ ├── publish_9@2x.png │ │ │ └── publish_9@3x.png │ │ ├── success.imageset │ │ │ ├── Contents.json │ │ │ └── 勾.png │ │ ├── telephone.imageset │ │ │ ├── Contents.json │ │ │ ├── telephone@2x.png │ │ │ └── telephone@3x.png │ │ ├── video.imageset │ │ │ ├── Contents.json │ │ │ ├── video@2x.png │ │ │ └── video@3x.png │ │ ├── wechatLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── wechatLogo@2x.png │ │ │ └── wechatLogo@3x.png │ │ ├── zhiwen.imageset │ │ │ ├── Contents.json │ │ │ ├── zhiwen@2x.png │ │ │ └── zhiwen@3x.png │ │ ├── 减号.imageset │ │ │ ├── Contents.json │ │ │ ├── 减号-1.png │ │ │ ├── 减号-2.png │ │ │ └── 减号.png │ │ ├── 加号.imageset │ │ │ ├── Contents.json │ │ │ ├── 加号-1.png │ │ │ ├── 加号-3.png │ │ │ └── 加号-4.png │ │ ├── 取消.imageset │ │ │ ├── Contents.json │ │ │ ├── 叉-1.png │ │ │ ├── 叉-2.png │ │ │ └── 叉-3.png │ │ └── 苹果logo.imageset │ │ │ ├── Contents.json │ │ │ └── 苹果logo.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CustomViews │ │ ├── CustomView1 │ │ │ ├── SPTextView.h │ │ │ ├── SPTextView.m │ │ │ ├── SendAlertView.h │ │ │ ├── SendAlertView.m │ │ │ └── SendAlertView.xib │ │ ├── CustomView17 │ │ │ ├── HCSStarRatingView.h │ │ │ ├── HCSStarRatingView.m │ │ │ ├── ScoreView.h │ │ │ └── ScoreView.m │ │ └── CustomView6 │ │ │ ├── MyCenterView.h │ │ │ └── MyCenterView.m │ ├── Images │ │ ├── image0.jpg │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ ├── image6.jpg │ │ ├── image7.jpg │ │ ├── image8.jpg │ │ ├── image9.jpg │ │ ├── send0.jpeg │ │ ├── send1.jpeg │ │ ├── 背景1.jpg │ │ └── 背景2.jpg │ ├── Info.plist │ ├── UIColor+DarkMode.h │ ├── UIColor+DarkMode.m │ ├── ViewController.h │ └── ViewController.m ├── SPAlertControllerTests │ ├── Info.plist │ ├── SPAlertControllerTests.m │ └── main.m └── SPAlertControllerUITests │ ├── Info.plist │ └── SPAlertControllerUITests.m ├── Images ├── .DS_Store ├── 3006981-0b23494c3ba2a6fc.jpg ├── 3006981-3cd4a2b6ff4da206.jpg ├── 3006981-41170beb443f32f0.jpg ├── 3006981-6f3752d49e579460.jpg ├── 3006981-9544748007937417.jpg ├── 3006981-9ed0416190e155dc.jpg ├── 3006981-a12eae25bc1061d6.jpg ├── 3006981-b35b79b657815756.jpg ├── 3CB7E93FDA241F253BFE156D0B4AA7E2.jpg ├── 6AAAA07F90853F52CA6166D815F619A9.jpg └── F4FB539593B4CC499E65735E4F1E8227.jpg ├── LICENSE ├── Package.swift ├── README.md ├── SPAlertController.podspec └── SPAlertController ├── SPAlertController.h └── SPAlertController.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.DS_Store -------------------------------------------------------------------------------- /.build/arm64-apple-macosx/debug/SPAlertController.build/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.build/arm64-apple-macosx/debug/SPAlertController.build/module.modulemap -------------------------------------------------------------------------------- /.build/arm64-apple-macosx/debug/index/db/v13/saved/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.build/arm64-apple-macosx/debug/index/db/v13/saved/data.mdb -------------------------------------------------------------------------------- /.build/arm64-apple-macosx/debug/index/db/v13/saved/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.build/arm64-apple-macosx/debug/index/db/v13/saved/lock.mdb -------------------------------------------------------------------------------- /.build/workspace-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.build/workspace-state.json -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcuserdata/shengping_le.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/.swiftpm/xcode/xcuserdata/shengping_le.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/project.xcworkspace/xcuserdata/leshengping.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/project.xcworkspace/xcuserdata/leshengping.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/project.xcworkspace/xcuserdata/libo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/project.xcworkspace/xcuserdata/libo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/project.xcworkspace/xcuserdata/shengping_le.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/project.xcworkspace/xcuserdata/shengping_le.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/xcuserdata/libo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/xcuserdata/libo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/xcuserdata/libo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/xcuserdata/libo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/xcuserdata/shengping_le.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/xcuserdata/shengping_le.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/SPAlertController.xcodeproj/xcuserdata/shengping_le.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController.xcodeproj/xcuserdata/shengping_le.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/SPAlertController/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/.DS_Store -------------------------------------------------------------------------------- /Example/SPAlertController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/AppDelegate.h -------------------------------------------------------------------------------- /Example/SPAlertController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/AppDelegate.m -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_0.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_0.imageset/publish_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_0.imageset/publish_0@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_0.imageset/publish_0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_0.imageset/publish_0@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_1.imageset/publish_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_1.imageset/publish_1@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_1.imageset/publish_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_1.imageset/publish_1@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_10.imageset/publish_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_10.imageset/publish_10@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_10.imageset/publish_10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_10.imageset/publish_10@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_11.imageset/publish_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_11.imageset/publish_11@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_11.imageset/publish_11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_11.imageset/publish_11@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_2.imageset/publish_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_2.imageset/publish_2@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_2.imageset/publish_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_2.imageset/publish_2@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_3.imageset/publish_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_3.imageset/publish_3@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_3.imageset/publish_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_3.imageset/publish_3@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_4.imageset/publish_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_4.imageset/publish_4@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_4.imageset/publish_4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_4.imageset/publish_4@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_5.imageset/publish_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_5.imageset/publish_5@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_5.imageset/publish_5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_5.imageset/publish_5@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_6.imageset/publish_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_6.imageset/publish_6@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_6.imageset/publish_6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_6.imageset/publish_6@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_7.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_7.imageset/publish_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_7.imageset/publish_7@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_7.imageset/publish_7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_7.imageset/publish_7@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_8.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_8.imageset/publish_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_8.imageset/publish_8@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_8.imageset/publish_8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_8.imageset/publish_8@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_9.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_9.imageset/publish_9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_9.imageset/publish_9@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/publish_9.imageset/publish_9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/publish_9.imageset/publish_9@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/success.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/success.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/success.imageset/勾.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/success.imageset/勾.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/telephone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/telephone.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/telephone.imageset/telephone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/telephone.imageset/telephone@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/telephone.imageset/telephone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/telephone.imageset/telephone@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/video.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/video.imageset/video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/video.imageset/video@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/video.imageset/video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/video.imageset/video@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/wechatLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/wechatLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/wechatLogo.imageset/wechatLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/wechatLogo.imageset/wechatLogo@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/wechatLogo.imageset/wechatLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/wechatLogo.imageset/wechatLogo@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/zhiwen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/zhiwen.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/zhiwen.imageset/zhiwen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/zhiwen.imageset/zhiwen@2x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/zhiwen.imageset/zhiwen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/zhiwen.imageset/zhiwen@3x.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/减号.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/减号.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/减号.imageset/减号-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/减号.imageset/减号-1.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/减号.imageset/减号-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/减号.imageset/减号-2.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/减号.imageset/减号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/减号.imageset/减号.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/加号.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/加号.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/加号.imageset/加号-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/加号.imageset/加号-1.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/加号.imageset/加号-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/加号.imageset/加号-3.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/加号.imageset/加号-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/加号.imageset/加号-4.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/取消.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/取消.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/取消.imageset/叉-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/取消.imageset/叉-1.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/取消.imageset/叉-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/取消.imageset/叉-2.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/取消.imageset/叉-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/取消.imageset/叉-3.png -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/苹果logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/苹果logo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SPAlertController/Assets.xcassets/苹果logo.imageset/苹果logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Assets.xcassets/苹果logo.imageset/苹果logo.png -------------------------------------------------------------------------------- /Example/SPAlertController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/SPAlertController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView1/SPTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView1/SPTextView.h -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView1/SPTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView1/SPTextView.m -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView1/SendAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView1/SendAlertView.h -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView1/SendAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView1/SendAlertView.m -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView1/SendAlertView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView1/SendAlertView.xib -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView17/HCSStarRatingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView17/HCSStarRatingView.h -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView17/HCSStarRatingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView17/HCSStarRatingView.m -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView17/ScoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView17/ScoreView.h -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView17/ScoreView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView17/ScoreView.m -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView6/MyCenterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView6/MyCenterView.h -------------------------------------------------------------------------------- /Example/SPAlertController/CustomViews/CustomView6/MyCenterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/CustomViews/CustomView6/MyCenterView.m -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image0.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image1.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image2.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image3.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image4.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image5.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image6.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image7.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image8.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/image9.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/send0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/send0.jpeg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/send1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/send1.jpeg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/背景1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/背景1.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Images/背景2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Images/背景2.jpg -------------------------------------------------------------------------------- /Example/SPAlertController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/Info.plist -------------------------------------------------------------------------------- /Example/SPAlertController/UIColor+DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/UIColor+DarkMode.h -------------------------------------------------------------------------------- /Example/SPAlertController/UIColor+DarkMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/UIColor+DarkMode.m -------------------------------------------------------------------------------- /Example/SPAlertController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/ViewController.h -------------------------------------------------------------------------------- /Example/SPAlertController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertController/ViewController.m -------------------------------------------------------------------------------- /Example/SPAlertControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertControllerTests/Info.plist -------------------------------------------------------------------------------- /Example/SPAlertControllerTests/SPAlertControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertControllerTests/SPAlertControllerTests.m -------------------------------------------------------------------------------- /Example/SPAlertControllerTests/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertControllerTests/main.m -------------------------------------------------------------------------------- /Example/SPAlertControllerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertControllerUITests/Info.plist -------------------------------------------------------------------------------- /Example/SPAlertControllerUITests/SPAlertControllerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Example/SPAlertControllerUITests/SPAlertControllerUITests.m -------------------------------------------------------------------------------- /Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/.DS_Store -------------------------------------------------------------------------------- /Images/3006981-0b23494c3ba2a6fc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-0b23494c3ba2a6fc.jpg -------------------------------------------------------------------------------- /Images/3006981-3cd4a2b6ff4da206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-3cd4a2b6ff4da206.jpg -------------------------------------------------------------------------------- /Images/3006981-41170beb443f32f0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-41170beb443f32f0.jpg -------------------------------------------------------------------------------- /Images/3006981-6f3752d49e579460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-6f3752d49e579460.jpg -------------------------------------------------------------------------------- /Images/3006981-9544748007937417.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-9544748007937417.jpg -------------------------------------------------------------------------------- /Images/3006981-9ed0416190e155dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-9ed0416190e155dc.jpg -------------------------------------------------------------------------------- /Images/3006981-a12eae25bc1061d6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-a12eae25bc1061d6.jpg -------------------------------------------------------------------------------- /Images/3006981-b35b79b657815756.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3006981-b35b79b657815756.jpg -------------------------------------------------------------------------------- /Images/3CB7E93FDA241F253BFE156D0B4AA7E2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/3CB7E93FDA241F253BFE156D0B4AA7E2.jpg -------------------------------------------------------------------------------- /Images/6AAAA07F90853F52CA6166D815F619A9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/6AAAA07F90853F52CA6166D815F619A9.jpg -------------------------------------------------------------------------------- /Images/F4FB539593B4CC499E65735E4F1E8227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Images/F4FB539593B4CC499E65735E4F1E8227.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/README.md -------------------------------------------------------------------------------- /SPAlertController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/SPAlertController.podspec -------------------------------------------------------------------------------- /SPAlertController/SPAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/SPAlertController/SPAlertController.h -------------------------------------------------------------------------------- /SPAlertController/SPAlertController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPAlertController/HEAD/SPAlertController/SPAlertController.m --------------------------------------------------------------------------------