├── InstagramVideoCell.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── saurabhyadav.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── saurabhyadav.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── EditSoftDemo.xcscheme │ └── xcschememanagement.plist └── InstagramVideoCell ├── 1.mp4 ├── 2.mp4 ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── user.imageset │ ├── 1394141400_eye_black_circle1.png.pagespeed.ce.ly0J4jWC8V.png │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── ImageTableViewCell.swift ├── Info.plist ├── VideoCellTableViewCell.swift ├── VideoPlayerView.swift ├── VideoPlayerViewController.swift └── ViewController.swift /InstagramVideoCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InstagramVideoCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InstagramVideoCell.xcodeproj/project.xcworkspace/xcuserdata/saurabhyadav.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell.xcodeproj/project.xcworkspace/xcuserdata/saurabhyadav.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /InstagramVideoCell.xcodeproj/xcuserdata/saurabhyadav.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell.xcodeproj/xcuserdata/saurabhyadav.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /InstagramVideoCell.xcodeproj/xcuserdata/saurabhyadav.xcuserdatad/xcschemes/EditSoftDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell.xcodeproj/xcuserdata/saurabhyadav.xcuserdatad/xcschemes/EditSoftDemo.xcscheme -------------------------------------------------------------------------------- /InstagramVideoCell.xcodeproj/xcuserdata/saurabhyadav.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell.xcodeproj/xcuserdata/saurabhyadav.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /InstagramVideoCell/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/1.mp4 -------------------------------------------------------------------------------- /InstagramVideoCell/2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/2.mp4 -------------------------------------------------------------------------------- /InstagramVideoCell/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/AppDelegate.swift -------------------------------------------------------------------------------- /InstagramVideoCell/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InstagramVideoCell/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InstagramVideoCell/Assets.xcassets/user.imageset/1394141400_eye_black_circle1.png.pagespeed.ce.ly0J4jWC8V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Assets.xcassets/user.imageset/1394141400_eye_black_circle1.png.pagespeed.ce.ly0J4jWC8V.png -------------------------------------------------------------------------------- /InstagramVideoCell/Assets.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Assets.xcassets/user.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramVideoCell/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InstagramVideoCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InstagramVideoCell/ImageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/ImageTableViewCell.swift -------------------------------------------------------------------------------- /InstagramVideoCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/Info.plist -------------------------------------------------------------------------------- /InstagramVideoCell/VideoCellTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/VideoCellTableViewCell.swift -------------------------------------------------------------------------------- /InstagramVideoCell/VideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/VideoPlayerView.swift -------------------------------------------------------------------------------- /InstagramVideoCell/VideoPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/VideoPlayerViewController.swift -------------------------------------------------------------------------------- /InstagramVideoCell/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-360/InstagramVideoCell/HEAD/InstagramVideoCell/ViewController.swift --------------------------------------------------------------------------------