├── .gitignore ├── Demonstration ├── NavigationBar.PNG ├── None.PNG ├── PiPhone.gif ├── SafeArea.PNG └── TabBar.PNG ├── Example ├── Example Swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CustomPlayerViewController.swift │ ├── Info.plist │ ├── PlayerView.swift │ └── ViewController.swift ├── PiPhone Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PiPhone Example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── PiPhone.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── PiPhone │ ├── Info.plist │ ├── PiPhone-dummy.m │ ├── PiPhone-prefix.pch │ ├── PiPhone-umbrella.h │ ├── PiPhone.modulemap │ └── PiPhone.xcconfig │ └── Pods-Example Swift │ ├── Info.plist │ ├── Pods-Example Swift-acknowledgements.markdown │ ├── Pods-Example Swift-acknowledgements.plist │ ├── Pods-Example Swift-dummy.m │ ├── Pods-Example Swift-frameworks.sh │ ├── Pods-Example Swift-resources.sh │ ├── Pods-Example Swift-umbrella.h │ ├── Pods-Example Swift.debug.xcconfig │ ├── Pods-Example Swift.modulemap │ └── Pods-Example Swift.release.xcconfig ├── LICENSE ├── PiPhone.podspec ├── README.md └── Source ├── Assets.xcassets ├── Close.imageset │ ├── Close.png │ └── Contents.json ├── CloseBackground.imageset │ ├── CloseBackground.png │ └── Contents.json ├── Contents.json ├── Pause.imageset │ ├── Contents.json │ └── Pause.png ├── PauseBackground.imageset │ ├── Contents.json │ └── PauseBackground.png ├── Play.imageset │ ├── Contents.json │ └── Play.png ├── PlayBackground.imageset │ ├── Contents.json │ └── PlayBackground.png ├── StopPiP.imageset │ ├── Contents.json │ └── StopPiP.png └── StopPiPBackground.imageset │ ├── Contents.json │ └── StopPiPBackground.png ├── Core ├── NSObject+PiPhone.h ├── NSObject+PiPhone.m ├── PiPManager+Private.h ├── PiPManager.h ├── PiPManager.m ├── PiPPictureInPictureController.h ├── PiPPictureInPictureController.m ├── PiPPlayerLayerObserver.h ├── PiPPlayerLayerObserver.m ├── PiPRuntime.h ├── PiPRuntime.m ├── UIImage+PiPhone.h └── UIImage+PiPhone.m ├── PiPhone.h ├── Player ├── PiPButton.h ├── PiPButton.m ├── PiPChevronView.h ├── PiPChevronView.m ├── PiPLoadingIndicatorView.h ├── PiPLoadingIndicatorView.m ├── PiPPlaybackControlsViewController.h ├── PiPPlaybackControlsViewController.m ├── PiPPlayerView.h ├── PiPPlayerView.m ├── PiPPlayerViewController.h ├── PiPPlayerViewController.m ├── PiPStashedView.h └── PiPStashedView.m └── Window ├── PiPRootView.h ├── PiPRootView.m ├── PiPRootViewController.h ├── PiPRootViewController.m ├── PiPWindow.h └── PiPWindow.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/.gitignore -------------------------------------------------------------------------------- /Demonstration/NavigationBar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Demonstration/NavigationBar.PNG -------------------------------------------------------------------------------- /Demonstration/None.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Demonstration/None.PNG -------------------------------------------------------------------------------- /Demonstration/PiPhone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Demonstration/PiPhone.gif -------------------------------------------------------------------------------- /Demonstration/SafeArea.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Demonstration/SafeArea.PNG -------------------------------------------------------------------------------- /Demonstration/TabBar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Demonstration/TabBar.PNG -------------------------------------------------------------------------------- /Example/Example Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example Swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example Swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example Swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example Swift/CustomPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/CustomPlayerViewController.swift -------------------------------------------------------------------------------- /Example/Example Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/Info.plist -------------------------------------------------------------------------------- /Example/Example Swift/PlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/PlayerView.swift -------------------------------------------------------------------------------- /Example/Example Swift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Example Swift/ViewController.swift -------------------------------------------------------------------------------- /Example/PiPhone Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/PiPhone Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PiPhone Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/PiPhone Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PiPhone Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/PiPhone Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PiPhone Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/PiPhone Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PiPhone Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/PiPhone Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PiPhone Example.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/PiPhone Example.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PiPhone.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Local Podspecs/PiPhone.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PiPhone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/PiPhone/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PiPhone/PiPhone-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/PiPhone/PiPhone-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PiPhone/PiPhone-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/PiPhone/PiPhone-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PiPhone/PiPhone-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/PiPhone/PiPhone-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PiPhone/PiPhone.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/PiPhone/PiPhone.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PiPhone/PiPhone.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/PiPhone/PiPhone.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Example/Pods/Target Support Files/Pods-Example Swift/Pods-Example Swift.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/LICENSE -------------------------------------------------------------------------------- /PiPhone.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/PiPhone.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/README.md -------------------------------------------------------------------------------- /Source/Assets.xcassets/Close.imageset/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Close.imageset/Close.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/Close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Close.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/CloseBackground.imageset/CloseBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/CloseBackground.imageset/CloseBackground.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/CloseBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/CloseBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/Pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Pause.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/Pause.imageset/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Pause.imageset/Pause.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/PauseBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/PauseBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/PauseBackground.imageset/PauseBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/PauseBackground.imageset/PauseBackground.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/Play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Play.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/Play.imageset/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/Play.imageset/Play.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/PlayBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/PlayBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/PlayBackground.imageset/PlayBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/PlayBackground.imageset/PlayBackground.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/StopPiP.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/StopPiP.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/StopPiP.imageset/StopPiP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/StopPiP.imageset/StopPiP.png -------------------------------------------------------------------------------- /Source/Assets.xcassets/StopPiPBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/StopPiPBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Assets.xcassets/StopPiPBackground.imageset/StopPiPBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Assets.xcassets/StopPiPBackground.imageset/StopPiPBackground.png -------------------------------------------------------------------------------- /Source/Core/NSObject+PiPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/NSObject+PiPhone.h -------------------------------------------------------------------------------- /Source/Core/NSObject+PiPhone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/NSObject+PiPhone.m -------------------------------------------------------------------------------- /Source/Core/PiPManager+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPManager+Private.h -------------------------------------------------------------------------------- /Source/Core/PiPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPManager.h -------------------------------------------------------------------------------- /Source/Core/PiPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPManager.m -------------------------------------------------------------------------------- /Source/Core/PiPPictureInPictureController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPPictureInPictureController.h -------------------------------------------------------------------------------- /Source/Core/PiPPictureInPictureController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPPictureInPictureController.m -------------------------------------------------------------------------------- /Source/Core/PiPPlayerLayerObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPPlayerLayerObserver.h -------------------------------------------------------------------------------- /Source/Core/PiPPlayerLayerObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPPlayerLayerObserver.m -------------------------------------------------------------------------------- /Source/Core/PiPRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPRuntime.h -------------------------------------------------------------------------------- /Source/Core/PiPRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/PiPRuntime.m -------------------------------------------------------------------------------- /Source/Core/UIImage+PiPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/UIImage+PiPhone.h -------------------------------------------------------------------------------- /Source/Core/UIImage+PiPhone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Core/UIImage+PiPhone.m -------------------------------------------------------------------------------- /Source/PiPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/PiPhone.h -------------------------------------------------------------------------------- /Source/Player/PiPButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPButton.h -------------------------------------------------------------------------------- /Source/Player/PiPButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPButton.m -------------------------------------------------------------------------------- /Source/Player/PiPChevronView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPChevronView.h -------------------------------------------------------------------------------- /Source/Player/PiPChevronView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPChevronView.m -------------------------------------------------------------------------------- /Source/Player/PiPLoadingIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPLoadingIndicatorView.h -------------------------------------------------------------------------------- /Source/Player/PiPLoadingIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPLoadingIndicatorView.m -------------------------------------------------------------------------------- /Source/Player/PiPPlaybackControlsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPPlaybackControlsViewController.h -------------------------------------------------------------------------------- /Source/Player/PiPPlaybackControlsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPPlaybackControlsViewController.m -------------------------------------------------------------------------------- /Source/Player/PiPPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPPlayerView.h -------------------------------------------------------------------------------- /Source/Player/PiPPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPPlayerView.m -------------------------------------------------------------------------------- /Source/Player/PiPPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPPlayerViewController.h -------------------------------------------------------------------------------- /Source/Player/PiPPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPPlayerViewController.m -------------------------------------------------------------------------------- /Source/Player/PiPStashedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPStashedView.h -------------------------------------------------------------------------------- /Source/Player/PiPStashedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Player/PiPStashedView.m -------------------------------------------------------------------------------- /Source/Window/PiPRootView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Window/PiPRootView.h -------------------------------------------------------------------------------- /Source/Window/PiPRootView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Window/PiPRootView.m -------------------------------------------------------------------------------- /Source/Window/PiPRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Window/PiPRootViewController.h -------------------------------------------------------------------------------- /Source/Window/PiPRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Window/PiPRootViewController.m -------------------------------------------------------------------------------- /Source/Window/PiPWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Window/PiPWindow.h -------------------------------------------------------------------------------- /Source/Window/PiPWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ky1vstar/PiPhone/HEAD/Source/Window/PiPWindow.m --------------------------------------------------------------------------------