├── .gitignore ├── LICENSE ├── README.md ├── dailymotion-player-objc.podspec ├── dailymotion-player-objc ├── DMPlayerViewController.h └── DMPlayerViewController.m ├── dailymotion-player-sdk-ios.xcodeproj └── project.pbxproj └── test-project ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj ├── LaunchScreen.xib └── Main.storyboard ├── Images.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Info.plist ├── PlaybackViewController.h ├── PlaybackViewController.m ├── RootViewController.h ├── RootViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/README.md -------------------------------------------------------------------------------- /dailymotion-player-objc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/dailymotion-player-objc.podspec -------------------------------------------------------------------------------- /dailymotion-player-objc/DMPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/dailymotion-player-objc/DMPlayerViewController.h -------------------------------------------------------------------------------- /dailymotion-player-objc/DMPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/dailymotion-player-objc/DMPlayerViewController.m -------------------------------------------------------------------------------- /dailymotion-player-sdk-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/dailymotion-player-sdk-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test-project/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/AppDelegate.h -------------------------------------------------------------------------------- /test-project/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/AppDelegate.m -------------------------------------------------------------------------------- /test-project/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /test-project/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /test-project/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /test-project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/Info.plist -------------------------------------------------------------------------------- /test-project/PlaybackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/PlaybackViewController.h -------------------------------------------------------------------------------- /test-project/PlaybackViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/PlaybackViewController.m -------------------------------------------------------------------------------- /test-project/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/RootViewController.h -------------------------------------------------------------------------------- /test-project/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/RootViewController.m -------------------------------------------------------------------------------- /test-project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-player-sdk-ios/HEAD/test-project/main.m --------------------------------------------------------------------------------