├── .gitignore ├── .travis.yml ├── CPInfiniteBanner.podspec ├── Example ├── CPInfiniteBanner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CPInfiniteBanner-Example.xcscheme ├── CPInfiniteBanner.xcworkspace │ └── contents.xcworkspacedata ├── CPInfiniteBanner │ ├── CPAppDelegate.h │ ├── CPAppDelegate.m │ ├── CPInfiniteBanner-Info.plist │ ├── CPInfiniteBanner-Prefix.pch │ ├── CPViewController.h │ ├── CPViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── 3.5.png │ │ │ ├── 4.png │ │ │ └── Contents.json │ ├── Images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── GIF └── iPhone 6.gif ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CPInfiniteBannerSingleItem.h │ ├── CPInfiniteBannerSingleItem.m │ ├── CPInfiniteBannerView.h │ └── CPInfiniteBannerView.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/.travis.yml -------------------------------------------------------------------------------- /CPInfiniteBanner.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/CPInfiniteBanner.podspec -------------------------------------------------------------------------------- /Example/CPInfiniteBanner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CPInfiniteBanner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CPInfiniteBanner.xcodeproj/xcshareddata/xcschemes/CPInfiniteBanner-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner.xcodeproj/xcshareddata/xcschemes/CPInfiniteBanner-Example.xcscheme -------------------------------------------------------------------------------- /Example/CPInfiniteBanner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/CPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/CPAppDelegate.h -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/CPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/CPAppDelegate.m -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/CPInfiniteBanner-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/CPInfiniteBanner-Info.plist -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/CPInfiniteBanner-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/CPInfiniteBanner-Prefix.pch -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/CPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/CPViewController.h -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/CPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/CPViewController.m -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images.xcassets/LaunchImage.launchimage/3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images.xcassets/LaunchImage.launchimage/3.5.png -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images.xcassets/LaunchImage.launchimage/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images.xcassets/LaunchImage.launchimage/4.png -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images/1.jpg -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images/2.jpg -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Images/3.jpg -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/Main.storyboard -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/CPInfiniteBanner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/CPInfiniteBanner/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GIF/iPhone 6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/GIF/iPhone 6.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/CPInfiniteBannerSingleItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Pod/Classes/CPInfiniteBannerSingleItem.h -------------------------------------------------------------------------------- /Pod/Classes/CPInfiniteBannerSingleItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Pod/Classes/CPInfiniteBannerSingleItem.m -------------------------------------------------------------------------------- /Pod/Classes/CPInfiniteBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Pod/Classes/CPInfiniteBannerView.h -------------------------------------------------------------------------------- /Pod/Classes/CPInfiniteBannerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/Pod/Classes/CPInfiniteBannerView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crespoxiao/CPInfiniteBanner/HEAD/README.md --------------------------------------------------------------------------------