├── .gitignore ├── .travis.yml ├── Example ├── InlineYoutubeView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── InlineYoutubeView-Example.xcscheme ├── InlineYoutubeView.xcworkspace │ └── contents.xcworkspacedata ├── InlineYoutubeView │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── playIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── play_btn_thumbnail1x.png │ │ │ ├── play_btn_thumbnail2x.png │ │ │ └── play_btn_thumbnail3x.png │ ├── InlineYoutubeView-Info.plist │ ├── InlineYoutubeView-Prefix.pch │ ├── YTAppDelegate.h │ ├── YTAppDelegate.m │ ├── YTVideoCell.h │ ├── YTVideoCell.m │ ├── YTViewController.h │ ├── YTViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── InlineYoutubeView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── InlineYoutubeView │ │ ├── Info.plist │ │ ├── InlineYoutubeView-dummy.m │ │ ├── InlineYoutubeView-prefix.pch │ │ ├── InlineYoutubeView-umbrella.h │ │ ├── InlineYoutubeView.modulemap │ │ └── InlineYoutubeView.xcconfig │ │ ├── Pods-InlineYoutubeView_Example │ │ ├── Info.plist │ │ ├── Pods-InlineYoutubeView_Example-acknowledgements.markdown │ │ ├── Pods-InlineYoutubeView_Example-acknowledgements.plist │ │ ├── Pods-InlineYoutubeView_Example-dummy.m │ │ ├── Pods-InlineYoutubeView_Example-frameworks.sh │ │ ├── Pods-InlineYoutubeView_Example-resources.sh │ │ ├── Pods-InlineYoutubeView_Example-umbrella.h │ │ ├── Pods-InlineYoutubeView_Example.debug.xcconfig │ │ ├── Pods-InlineYoutubeView_Example.modulemap │ │ └── Pods-InlineYoutubeView_Example.release.xcconfig │ │ └── Pods-InlineYoutubeView_Tests │ │ ├── Info.plist │ │ ├── Pods-InlineYoutubeView_Tests-acknowledgements.markdown │ │ ├── Pods-InlineYoutubeView_Tests-acknowledgements.plist │ │ ├── Pods-InlineYoutubeView_Tests-dummy.m │ │ ├── Pods-InlineYoutubeView_Tests-frameworks.sh │ │ ├── Pods-InlineYoutubeView_Tests-resources.sh │ │ ├── Pods-InlineYoutubeView_Tests-umbrella.h │ │ ├── Pods-InlineYoutubeView_Tests.debug.xcconfig │ │ ├── Pods-InlineYoutubeView_Tests.modulemap │ │ └── Pods-InlineYoutubeView_Tests.release.xcconfig ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ └── en.lproj │ │ └── InfoPlist.strings └── package-lock.json ├── InlineYoutubeView.podspec ├── InlineYoutubeView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── InlineYoutubeView.h │ └── InlineYoutubeView.m ├── LICENSE ├── README.md ├── Screenshots └── InlineYoutube.gif └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/InlineYoutubeView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/InlineYoutubeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/InlineYoutubeView.xcodeproj/xcshareddata/xcschemes/InlineYoutubeView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView.xcodeproj/xcshareddata/xcschemes/InlineYoutubeView-Example.xcscheme -------------------------------------------------------------------------------- /Example/InlineYoutubeView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/play_btn_thumbnail1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/play_btn_thumbnail1x.png -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/play_btn_thumbnail2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/play_btn_thumbnail2x.png -------------------------------------------------------------------------------- /Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/play_btn_thumbnail3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/Images.xcassets/playIcon.imageset/play_btn_thumbnail3x.png -------------------------------------------------------------------------------- /Example/InlineYoutubeView/InlineYoutubeView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/InlineYoutubeView-Info.plist -------------------------------------------------------------------------------- /Example/InlineYoutubeView/InlineYoutubeView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/InlineYoutubeView-Prefix.pch -------------------------------------------------------------------------------- /Example/InlineYoutubeView/YTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/YTAppDelegate.h -------------------------------------------------------------------------------- /Example/InlineYoutubeView/YTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/YTAppDelegate.m -------------------------------------------------------------------------------- /Example/InlineYoutubeView/YTVideoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/YTVideoCell.h -------------------------------------------------------------------------------- /Example/InlineYoutubeView/YTVideoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/YTVideoCell.m -------------------------------------------------------------------------------- /Example/InlineYoutubeView/YTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/YTViewController.h -------------------------------------------------------------------------------- /Example/InlineYoutubeView/YTViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/YTViewController.m -------------------------------------------------------------------------------- /Example/InlineYoutubeView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/InlineYoutubeView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/InlineYoutubeView/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/InlineYoutubeView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Local Podspecs/InlineYoutubeView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/InlineYoutubeView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/InlineYoutubeView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/InlineYoutubeView/InlineYoutubeView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Example/Pods-InlineYoutubeView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Pods/Target Support Files/Pods-InlineYoutubeView_Tests/Pods-InlineYoutubeView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /InlineYoutubeView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/InlineYoutubeView.podspec -------------------------------------------------------------------------------- /InlineYoutubeView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InlineYoutubeView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InlineYoutubeView/Classes/InlineYoutubeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/InlineYoutubeView/Classes/InlineYoutubeView.h -------------------------------------------------------------------------------- /InlineYoutubeView/Classes/InlineYoutubeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/InlineYoutubeView/Classes/InlineYoutubeView.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/InlineYoutube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/ios-inline-youtube-view/HEAD/Screenshots/InlineYoutube.gif -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------