├── Default-568h@2x.png ├── LICENSE ├── PPImageScrollingTableViewCell.podspec ├── PPImageScrollingTableViewControllerDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── PPImageScrollingTableViewControllerDemo.xcscheme └── xcuserdata │ └── godchess.xcuserdatad │ └── xcschemes │ ├── PPImageScrollingTableViewControllerDemo.xcscheme │ └── xcschememanagement.plist ├── PPImageScrollingTableViewControllerDemo ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── PPAppDelegate.h ├── PPAppDelegate.m ├── PPImageScrollingTableViewCell │ ├── PPCollectionViewCell.h │ ├── PPCollectionViewCell.m │ ├── PPImageScrollingCellView.h │ ├── PPImageScrollingCellView.m │ ├── PPImageScrollingTableViewCell.h │ └── PPImageScrollingTableViewCell.m ├── PPImageScrollingTableViewControllerDemo-Info.plist ├── PPImageScrollingTableViewControllerDemo-Prefix.pch ├── PPViewController.h ├── PPViewController.m ├── en.lproj │ └── InfoPlist.strings ├── images │ ├── sample_1.jpeg │ ├── sample_2.jpeg │ ├── sample_3.jpeg │ ├── sample_4.jpeg │ ├── sample_5.jpeg │ ├── sample_6.jpeg │ └── sample_7.jpeg └── main.m ├── PPImageScrollingTableViewControllerDemoTests ├── PPImageScrollingTableViewControllerDemoTests-Info.plist ├── PPImageScrollingTableViewControllerDemoTests.m └── en.lproj │ └── InfoPlist.strings └── README.md /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/LICENSE -------------------------------------------------------------------------------- /PPImageScrollingTableViewCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewCell.podspec -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo.xcodeproj/xcshareddata/xcschemes/PPImageScrollingTableViewControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo.xcodeproj/xcshareddata/xcschemes/PPImageScrollingTableViewControllerDemo.xcscheme -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo.xcodeproj/xcuserdata/godchess.xcuserdatad/xcschemes/PPImageScrollingTableViewControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo.xcodeproj/xcuserdata/godchess.xcuserdatad/xcschemes/PPImageScrollingTableViewControllerDemo.xcscheme -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo.xcodeproj/xcuserdata/godchess.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo.xcodeproj/xcuserdata/godchess.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPAppDelegate.h -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPAppDelegate.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPCollectionViewCell.h -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPCollectionViewCell.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingCellView.h -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingCellView.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingTableViewCell.h -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewCell/PPImageScrollingTableViewCell.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewControllerDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewControllerDemo-Info.plist -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewControllerDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPImageScrollingTableViewControllerDemo-Prefix.pch -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPViewController.h -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/PPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/PPViewController.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_1.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_2.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_3.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_4.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_5.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_6.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/images/sample_7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/images/sample_7.jpeg -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemo/main.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemoTests/PPImageScrollingTableViewControllerDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemoTests/PPImageScrollingTableViewControllerDemoTests-Info.plist -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemoTests/PPImageScrollingTableViewControllerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/PPImageScrollingTableViewControllerDemoTests/PPImageScrollingTableViewControllerDemoTests.m -------------------------------------------------------------------------------- /PPImageScrollingTableViewControllerDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popochess/PPImageScrollingTableViewCell/HEAD/README.md --------------------------------------------------------------------------------