├── .DS_Store ├── Demo ├── .DS_Store ├── SPCycleScrollView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── leshengping.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── leshengping.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── SPCycleScrollView │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── currentDot.imageset │ │ │ ├── Contents.json │ │ │ ├── 切换图标@2x.png │ │ │ └── 切换图标@3x.png │ │ └── otherDot.imageset │ │ │ ├── Contents.json │ │ │ ├── 切换小圆@2x.png │ │ │ └── 切换小圆@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Resource │ │ ├── dog.gif │ │ ├── placeholder.png │ │ ├── 景1.jpg │ │ ├── 景2.jpg │ │ ├── 景3.jpg │ │ ├── 景4.jpg │ │ ├── 景5.jpg │ │ ├── 笑脸red.png │ │ └── 笑脸yellow.png │ ├── SPCycleScrollView │ │ ├── SPCycleScrollView.h │ │ ├── SPCycleScrollView.m │ │ ├── SPPageControl.h │ │ └── SPageControl.m │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SPCycleScrollViewTests │ ├── Info.plist │ └── SPCycleScrollViewTests.m └── SPCycleScrollViewUITests │ ├── Info.plist │ └── SPCycleScrollViewUITests.m ├── README.md ├── SPCycleScrollView.podspec └── SPCycleScrollView ├── SPCycleScrollView.h ├── SPCycleScrollView.m ├── SPPageControl.h └── SPageControl.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/.DS_Store -------------------------------------------------------------------------------- /Demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/.DS_Store -------------------------------------------------------------------------------- /Demo/SPCycleScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/SPCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/SPCycleScrollView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/SPCycleScrollView.xcodeproj/project.xcworkspace/xcuserdata/leshengping.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView.xcodeproj/project.xcworkspace/xcuserdata/leshengping.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo/SPCycleScrollView.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Demo/SPCycleScrollView.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView.xcodeproj/xcuserdata/leshengping.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/.DS_Store -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/AppDelegate.h -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/AppDelegate.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/currentDot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/currentDot.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/currentDot.imageset/切换图标@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/currentDot.imageset/切换图标@2x.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/currentDot.imageset/切换图标@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/currentDot.imageset/切换图标@3x.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/otherDot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/otherDot.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/otherDot.imageset/切换小圆@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/otherDot.imageset/切换小圆@2x.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Assets.xcassets/otherDot.imageset/切换小圆@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Assets.xcassets/otherDot.imageset/切换小圆@3x.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Info.plist -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/dog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/dog.gif -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/placeholder.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/景1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/景1.jpg -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/景2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/景2.jpg -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/景3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/景3.jpg -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/景4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/景4.jpg -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/景5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/景5.jpg -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/笑脸red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/笑脸red.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/Resource/笑脸yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/Resource/笑脸yellow.png -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/SPCycleScrollView/SPCycleScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/SPCycleScrollView/SPCycleScrollView.h -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/SPCycleScrollView/SPCycleScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/SPCycleScrollView/SPCycleScrollView.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/SPCycleScrollView/SPPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/SPCycleScrollView/SPPageControl.h -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/SPCycleScrollView/SPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/SPCycleScrollView/SPageControl.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/SecondViewController.h -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/SecondViewController.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/ViewController.h -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/ViewController.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollView/main.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollViewTests/Info.plist -------------------------------------------------------------------------------- /Demo/SPCycleScrollViewTests/SPCycleScrollViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollViewTests/SPCycleScrollViewTests.m -------------------------------------------------------------------------------- /Demo/SPCycleScrollViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollViewUITests/Info.plist -------------------------------------------------------------------------------- /Demo/SPCycleScrollViewUITests/SPCycleScrollViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/Demo/SPCycleScrollViewUITests/SPCycleScrollViewUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/README.md -------------------------------------------------------------------------------- /SPCycleScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/SPCycleScrollView.podspec -------------------------------------------------------------------------------- /SPCycleScrollView/SPCycleScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/SPCycleScrollView/SPCycleScrollView.h -------------------------------------------------------------------------------- /SPCycleScrollView/SPCycleScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/SPCycleScrollView/SPCycleScrollView.m -------------------------------------------------------------------------------- /SPCycleScrollView/SPPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/SPCycleScrollView/SPPageControl.h -------------------------------------------------------------------------------- /SPCycleScrollView/SPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPStore/SPCycleScrollView/HEAD/SPCycleScrollView/SPageControl.m --------------------------------------------------------------------------------