├── .gitignore ├── .ruby-version ├── .swift-version ├── .travis.yml ├── Art └── IconArt.sketch ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── VideoBackgroundSample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── spotify_logo.imageset │ │ ├── Contents.json │ │ ├── spotify_logo.png │ │ ├── spotify_logo@2x.png │ │ └── spotify_logo@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── spotifyVideo.mp4 ├── VideoBackgroundSampleTests ├── Info.plist └── VideoBackgroundSampleTests.swift ├── VideoBackgroundViewController.podspec ├── VideoBackgroundViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── VideoBackgroundViewController.xcscheme └── xcuserdata │ └── chris.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── VideoBackgroundViewController.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── VideoBackgroundViewController ├── Info.plist ├── VideoBackgroundViewController.h ├── VideoBackgroundViewController.swift └── VideoScalingMode.swift ├── VideoBackgroundViewControllerTests ├── Info.plist └── VideoBackgroundControllerSpec.swift └── Web ├── videoBackgroundViewController.gif └── videoBackgroundViewControllerBanner.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Art/IconArt.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Art/IconArt.sketch -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/README.md -------------------------------------------------------------------------------- /VideoBackgroundSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/AppDelegate.swift -------------------------------------------------------------------------------- /VideoBackgroundSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VideoBackgroundSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/Contents.json -------------------------------------------------------------------------------- /VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/spotify_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/spotify_logo.png -------------------------------------------------------------------------------- /VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/spotify_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/spotify_logo@2x.png -------------------------------------------------------------------------------- /VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/spotify_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Assets.xcassets/spotify_logo.imageset/spotify_logo@3x.png -------------------------------------------------------------------------------- /VideoBackgroundSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VideoBackgroundSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VideoBackgroundSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/Info.plist -------------------------------------------------------------------------------- /VideoBackgroundSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/ViewController.swift -------------------------------------------------------------------------------- /VideoBackgroundSample/spotifyVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSample/spotifyVideo.mp4 -------------------------------------------------------------------------------- /VideoBackgroundSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSampleTests/Info.plist -------------------------------------------------------------------------------- /VideoBackgroundSampleTests/VideoBackgroundSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundSampleTests/VideoBackgroundSampleTests.swift -------------------------------------------------------------------------------- /VideoBackgroundViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.podspec -------------------------------------------------------------------------------- /VideoBackgroundViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VideoBackgroundViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VideoBackgroundViewController.xcodeproj/xcshareddata/xcschemes/VideoBackgroundViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.xcodeproj/xcshareddata/xcschemes/VideoBackgroundViewController.xcscheme -------------------------------------------------------------------------------- /VideoBackgroundViewController.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VideoBackgroundViewController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VideoBackgroundViewController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VideoBackgroundViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController/Info.plist -------------------------------------------------------------------------------- /VideoBackgroundViewController/VideoBackgroundViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController/VideoBackgroundViewController.h -------------------------------------------------------------------------------- /VideoBackgroundViewController/VideoBackgroundViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController/VideoBackgroundViewController.swift -------------------------------------------------------------------------------- /VideoBackgroundViewController/VideoScalingMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewController/VideoScalingMode.swift -------------------------------------------------------------------------------- /VideoBackgroundViewControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewControllerTests/Info.plist -------------------------------------------------------------------------------- /VideoBackgroundViewControllerTests/VideoBackgroundControllerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/VideoBackgroundViewControllerTests/VideoBackgroundControllerSpec.swift -------------------------------------------------------------------------------- /Web/videoBackgroundViewController.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Web/videoBackgroundViewController.gif -------------------------------------------------------------------------------- /Web/videoBackgroundViewControllerBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiXeL16/VideoBackgroundViewController/HEAD/Web/videoBackgroundViewControllerBanner.png --------------------------------------------------------------------------------