├── .gitignore ├── LICENSE ├── README.md ├── SRCarouselView ├── SRCarouselView.h └── SRCarouselView.m ├── SRCarouselViewDemo ├── SRCarouselViewDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SRCarouselViewDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── logo01.jpg │ ├── logo02.jpg │ ├── logo03.jpg │ ├── logo04.jpg │ ├── logo05.jpg │ ├── main.m │ └── placeholder.png └── screenshots.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/README.md -------------------------------------------------------------------------------- /SRCarouselView/SRCarouselView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselView/SRCarouselView.h -------------------------------------------------------------------------------- /SRCarouselView/SRCarouselView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselView/SRCarouselView.m -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/Info.plist -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/ViewController.h -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/ViewController.m -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/logo01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/logo01.jpg -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/logo02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/logo02.jpg -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/logo03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/logo03.jpg -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/logo04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/logo04.jpg -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/logo05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/logo05.jpg -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/main.m -------------------------------------------------------------------------------- /SRCarouselViewDemo/SRCarouselViewDemo/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/SRCarouselViewDemo/SRCarouselViewDemo/placeholder.png -------------------------------------------------------------------------------- /screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowilling/SRCarouselView/HEAD/screenshots.png --------------------------------------------------------------------------------