├── .gitignore ├── Assets ├── Screenshot1.png ├── Screenshot2.png └── exmple.gif ├── CHANGELOG.md ├── Classes ├── SAScrollCellView.h ├── SAScrollCellView.m ├── SAScrollTableViewCell.h ├── SAScrollTableViewCell.m ├── cell │ ├── SAImageCollectionViewCell.h │ ├── SAImageCollectionViewCell.m │ ├── SAMediaCollectionViewCell.h │ └── SAMediaCollectionViewCell.m ├── images │ └── SAPlayControl.png └── support │ ├── SAScrollMedia.h │ └── SAScrollMedia.m ├── Example ├── Podfile ├── SAScrollTableViewCell.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SAScrollTableViewCell │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── SAAppDelegate.h │ ├── SAAppDelegate.m │ ├── SAScrollTableViewCell-Info.plist │ ├── SAScrollTableViewCell-Prefix.pch │ ├── SAViewController.h │ ├── SAViewController.m │ ├── main.m │ └── media │ ├── sample1.jpg │ ├── sample1.mov │ └── sample2.jpg ├── LICENSE ├── README.md ├── Rakefile └── SAScrollTableViewCell.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Assets/Screenshot1.png -------------------------------------------------------------------------------- /Assets/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Assets/Screenshot2.png -------------------------------------------------------------------------------- /Assets/exmple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Assets/exmple.gif -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # SAScrollTableViewCell CHANGELOG 2 | 3 | ## 0.1.0 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /Classes/SAScrollCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/SAScrollCellView.h -------------------------------------------------------------------------------- /Classes/SAScrollCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/SAScrollCellView.m -------------------------------------------------------------------------------- /Classes/SAScrollTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/SAScrollTableViewCell.h -------------------------------------------------------------------------------- /Classes/SAScrollTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/SAScrollTableViewCell.m -------------------------------------------------------------------------------- /Classes/cell/SAImageCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/cell/SAImageCollectionViewCell.h -------------------------------------------------------------------------------- /Classes/cell/SAImageCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/cell/SAImageCollectionViewCell.m -------------------------------------------------------------------------------- /Classes/cell/SAMediaCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/cell/SAMediaCollectionViewCell.h -------------------------------------------------------------------------------- /Classes/cell/SAMediaCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/cell/SAMediaCollectionViewCell.m -------------------------------------------------------------------------------- /Classes/images/SAPlayControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/images/SAPlayControl.png -------------------------------------------------------------------------------- /Classes/support/SAScrollMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/support/SAScrollMedia.h -------------------------------------------------------------------------------- /Classes/support/SAScrollMedia.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Classes/support/SAScrollMedia.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | pod 'SDWebImage' -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/SAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/SAAppDelegate.h -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/SAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/SAAppDelegate.m -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/SAScrollTableViewCell-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/SAScrollTableViewCell-Info.plist -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/SAScrollTableViewCell-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/SAScrollTableViewCell-Prefix.pch -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/SAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/SAViewController.h -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/SAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/SAViewController.m -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/main.m -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/media/sample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/media/sample1.jpg -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/media/sample1.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/media/sample1.mov -------------------------------------------------------------------------------- /Example/SAScrollTableViewCell/media/sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Example/SAScrollTableViewCell/media/sample2.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/Rakefile -------------------------------------------------------------------------------- /SAScrollTableViewCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shams-ahmed/SAScrollTableViewCell/HEAD/SAScrollTableViewCell.podspec --------------------------------------------------------------------------------