├── .gitignore ├── LICENSE ├── README.md ├── SSCycleScrollDemo ├── Podfile ├── Podfile.lock ├── Pods │ ├── Manifest.lock │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── SSCycleScrollDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── SSCycleScrollDemo.xcscmblueprint ├── SSCycleScrollDemo.xcworkspace │ └── contents.xcworkspacedata └── SSCycleScrollDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FirstViewController.swift │ ├── Info.plist │ ├── MainViewController.swift │ ├── banner1.jpg │ ├── banner3.jpg │ ├── banner4.jpg │ ├── mainBottomBackground.png │ └── sscycle.gif └── SSCycleScrollView ├── LICENSE ├── Podfile ├── Podfile.lock ├── SSCycleScrollView.podspec ├── SSCycleScrollView.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SSCycleScrollView.xcworkspace └── contents.xcworkspacedata └── SSCycleScrollView ├── Info.plist ├── SSCycleScrollView.h └── SSCycleScrollView.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/README.md -------------------------------------------------------------------------------- /SSCycleScrollDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/Podfile -------------------------------------------------------------------------------- /SSCycleScrollDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/Podfile.lock -------------------------------------------------------------------------------- /SSCycleScrollDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /SSCycleScrollDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.xcworkspace/xcshareddata/SSCycleScrollDemo.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.xcworkspace/xcshareddata/SSCycleScrollDemo.xcscmblueprint -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/AppDelegate.swift -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/FirstViewController.swift -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/Info.plist -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/MainViewController.swift -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/banner1.jpg -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/banner3.jpg -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/banner4.jpg -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/mainBottomBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/mainBottomBackground.png -------------------------------------------------------------------------------- /SSCycleScrollDemo/SSCycleScrollDemo/sscycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollDemo/SSCycleScrollDemo/sscycle.gif -------------------------------------------------------------------------------- /SSCycleScrollView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/LICENSE -------------------------------------------------------------------------------- /SSCycleScrollView/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/Podfile -------------------------------------------------------------------------------- /SSCycleScrollView/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/Podfile.lock -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView.podspec -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView/Info.plist -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView/SSCycleScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView/SSCycleScrollView.h -------------------------------------------------------------------------------- /SSCycleScrollView/SSCycleScrollView/SSCycleScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/HEAD/SSCycleScrollView/SSCycleScrollView/SSCycleScrollView.swift --------------------------------------------------------------------------------