├── .gitignore ├── LICENSE ├── PlayerKit.podspec ├── PlayerKit ├── Classes │ ├── Categorys │ │ ├── UIControl+PlayerKitAdditions.h │ │ ├── UIControl+PlayerKitAdditions.m │ │ ├── UIViewController+PlayerKitAdditions.h │ │ └── UIViewController+PlayerKitAdditions.m │ ├── Controllers │ │ ├── PlayerKitViewController.h │ │ └── PlayerKitViewController.m │ ├── PlayerKit.h │ ├── Protocol │ │ └── PlayerKitPlayerViewProtocol.h │ ├── Utility │ │ ├── PlayerKitTimeTools.h │ │ └── PlayerKitTimeTools.m │ └── Views │ │ ├── PlayerKitContainer.h │ │ ├── PlayerKitContainer.m │ │ ├── PlayerKitControlProgressTipsView.h │ │ ├── PlayerKitControlProgressTipsView.m │ │ ├── PlayerKitPlayerView.h │ │ ├── PlayerKitPlayerView.m │ │ ├── PlayerKitProgressView.h │ │ ├── PlayerKitProgressView.m │ │ ├── PlayerKitReloadTipsView.h │ │ ├── PlayerKitReloadTipsView.m │ │ ├── PlayerKitToolsBottomView.h │ │ ├── PlayerKitToolsBottomView.m │ │ ├── PlayerKitToolsTopView.h │ │ ├── PlayerKitToolsTopView.m │ │ ├── PlayerKitVideoLayerView.h │ │ └── PlayerKitVideoLayerView.m └── Resources │ ├── player-kit-animation-animated@2x.png │ ├── player-kit-animation-animated@3x.png │ ├── player-kit-animation-none@2x.png │ ├── player-kit-animation-none@3x.png │ ├── player-kit-backward.png │ ├── player-kit-backward@2x.png │ ├── player-kit-close.png │ ├── player-kit-close@2x.png │ ├── player-kit-forward.png │ ├── player-kit-forward@2x.png │ ├── player-kit-pause.png │ ├── player-kit-pause@2x.png │ ├── player-kit-play.png │ ├── player-kit-play@2x.png │ ├── player-kit-slider_indicator@2x.png │ ├── player-kit-slider_track_empty@2x.png │ └── player-kit-slider_track_fill@2x.png ├── PlayerKitDemo ├── PlayerKitDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── PlayerKitDemo.xcworkspace │ └── contents.xcworkspacedata ├── PlayerKitDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.png │ │ ├── Brand Assets.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ └── Default@2x.png │ │ ├── Contents.json │ │ ├── demo-back-button.imageset │ │ │ ├── Contents.json │ │ │ ├── demo-back-button.png │ │ │ └── demo-back-button@2x.png │ │ ├── eye_preview_see_seen_view.imageset │ │ │ ├── Contents.json │ │ │ └── eye_preview_see_seen_view@2x.png │ │ └── heart_like_love_vote.imageset │ │ │ ├── Contents.json │ │ │ └── heart_like_love_vote@2x.png │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Demos │ │ ├── Kuaibao │ │ │ ├── KuaibaoViewController.h │ │ │ └── KuaibaoViewController.m │ │ ├── Sample │ │ │ ├── CustomPlayerViews │ │ │ │ ├── CustomPlayerView.h │ │ │ │ └── CustomPlayerView.m │ │ │ ├── SampleViewController.h │ │ │ └── SampleViewController.m │ │ ├── Sohu │ │ │ ├── SohuTableViewCell.h │ │ │ ├── SohuTableViewCell.m │ │ │ ├── SohuTableViewCell.xib │ │ │ ├── SohuViewController.h │ │ │ └── SohuViewController.m │ │ ├── Youku │ │ │ ├── YoukuDetailViewController.h │ │ │ ├── YoukuDetailViewController.m │ │ │ ├── YoukuViewController.h │ │ │ └── YoukuViewController.m │ │ └── Youtobe │ │ │ ├── YoutobeViewController.h │ │ │ └── YoutobeViewController.m │ ├── Info.plist │ ├── NavigationController │ │ ├── BaseNavigationController.h │ │ └── BaseNavigationController.m │ ├── Resouces │ │ └── nba.mp4 │ ├── RootViewController │ │ ├── RootViewController.h │ │ └── RootViewController.m │ ├── VideoController │ │ ├── VideoController.h │ │ ├── VideoController.m │ │ ├── VideoItem.h │ │ ├── VideoItem.m │ │ ├── VideoTableViewCell.h │ │ ├── VideoTableViewCell.m │ │ └── VideoTableViewCell.xib │ └── main.m ├── PlayerKitDemoTests │ ├── Info.plist │ └── PlayerKitDemoTests.m ├── PlayerKitDemoUITests │ ├── Info.plist │ └── PlayerKitDemoUITests.m ├── Podfile ├── Podfile.lock └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── FLAnimatedImage │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.h │ │ ├── FLAnimatedImage.m │ │ ├── FLAnimatedImageView.h │ │ └── FLAnimatedImageView.m │ ├── LICENSE │ └── README.md │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── FLAnimatedImage │ │ │ ├── FLAnimatedImage.h │ │ │ └── FLAnimatedImageView.h │ │ ├── Mantle │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTScope.h │ │ │ ├── MTLJSONAdapter.h │ │ │ ├── MTLModel+NSCoding.h │ │ │ ├── MTLModel.h │ │ │ ├── MTLReflection.h │ │ │ ├── MTLTransformerErrorHandling.h │ │ │ ├── MTLValueTransformer.h │ │ │ ├── Mantle.h │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ │ ├── NSError+MTLModelException.h │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ │ └── metamacros.h │ │ ├── PINCache │ │ │ ├── Nullability.h │ │ │ ├── PINCache.h │ │ │ ├── PINDiskCache.h │ │ │ └── PINMemoryCache.h │ │ ├── PINRemoteImage │ │ │ ├── FLAnimatedImageView+PINRemoteImage.h │ │ │ ├── NSData+ImageDetectors.h │ │ │ ├── PINButton+PINRemoteImage.h │ │ │ ├── PINDataTaskOperation.h │ │ │ ├── PINImage+DecodedImage.h │ │ │ ├── PINImage+WebP.h │ │ │ ├── PINImageView+PINRemoteImage.h │ │ │ ├── PINProgressiveImage.h │ │ │ ├── PINRemoteImage.h │ │ │ ├── PINRemoteImageCallbacks.h │ │ │ ├── PINRemoteImageCategoryManager.h │ │ │ ├── PINRemoteImageDownloadTask.h │ │ │ ├── PINRemoteImageMacros.h │ │ │ ├── PINRemoteImageManager.h │ │ │ ├── PINRemoteImageManagerResult.h │ │ │ ├── PINRemoteImageProcessorTask.h │ │ │ ├── PINRemoteImageTask.h │ │ │ └── PINURLSessionManager.h │ │ └── PlayerKit │ │ │ ├── PlayerKit.h │ │ │ ├── PlayerKitContainer.h │ │ │ ├── PlayerKitControlProgressTipsView.h │ │ │ ├── PlayerKitPlayerView.h │ │ │ ├── PlayerKitPlayerViewProtocol.h │ │ │ ├── PlayerKitProgressView.h │ │ │ ├── PlayerKitReloadTipsView.h │ │ │ ├── PlayerKitTimeTools.h │ │ │ ├── PlayerKitToolsBottomView.h │ │ │ ├── PlayerKitToolsTopView.h │ │ │ ├── PlayerKitVideoLayerView.h │ │ │ ├── PlayerKitViewController.h │ │ │ ├── UIControl+PlayerKitAdditions.h │ │ │ └── UIViewController+PlayerKitAdditions.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.h │ │ └── FLAnimatedImageView.h │ │ ├── Mantle │ │ ├── MTLJSONAdapter.h │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel.h │ │ ├── MTLReflection.h │ │ ├── MTLTransformerErrorHandling.h │ │ ├── MTLValueTransformer.h │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ ├── NSError+MTLModelException.h │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ └── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── PINCache │ │ ├── Nullability.h │ │ ├── PINCache.h │ │ ├── PINDiskCache.h │ │ └── PINMemoryCache.h │ │ ├── PINRemoteImage │ │ ├── FLAnimatedImageView+PINRemoteImage.h │ │ ├── NSData+ImageDetectors.h │ │ ├── PINButton+PINRemoteImage.h │ │ ├── PINDataTaskOperation.h │ │ ├── PINImage+DecodedImage.h │ │ ├── PINImage+WebP.h │ │ ├── PINImageView+PINRemoteImage.h │ │ ├── PINProgressiveImage.h │ │ ├── PINRemoteImage.h │ │ ├── PINRemoteImageCallbacks.h │ │ ├── PINRemoteImageCategoryManager.h │ │ ├── PINRemoteImageDownloadTask.h │ │ ├── PINRemoteImageMacros.h │ │ ├── PINRemoteImageManager.h │ │ ├── PINRemoteImageManagerResult.h │ │ ├── PINRemoteImageProcessorTask.h │ │ ├── PINRemoteImageTask.h │ │ └── PINURLSessionManager.h │ │ └── PlayerKit │ │ ├── PlayerKit.h │ │ ├── PlayerKitContainer.h │ │ ├── PlayerKitControlProgressTipsView.h │ │ ├── PlayerKitPlayerView.h │ │ ├── PlayerKitPlayerViewProtocol.h │ │ ├── PlayerKitProgressView.h │ │ ├── PlayerKitReloadTipsView.h │ │ ├── PlayerKitTimeTools.h │ │ ├── PlayerKitToolsBottomView.h │ │ ├── PlayerKitToolsTopView.h │ │ ├── PlayerKitVideoLayerView.h │ │ ├── PlayerKitViewController.h │ │ ├── UIControl+PlayerKitAdditions.h │ │ └── UIViewController+PlayerKitAdditions.h │ ├── Local Podspecs │ └── PlayerKit.podspec.json │ ├── Manifest.lock │ ├── Mantle │ ├── LICENSE.md │ ├── Mantle │ │ ├── MTLJSONAdapter.h │ │ ├── MTLJSONAdapter.m │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel+NSCoding.m │ │ ├── MTLModel.h │ │ ├── MTLModel.m │ │ ├── MTLReflection.h │ │ ├── MTLReflection.m │ │ ├── MTLTransformerErrorHandling.h │ │ ├── MTLTransformerErrorHandling.m │ │ ├── MTLValueTransformer.h │ │ ├── MTLValueTransformer.m │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSArray+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ ├── NSDictionary+MTLJSONKeyPath.m │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ ├── NSDictionary+MTLMappingAdditions.m │ │ ├── NSError+MTLModelException.h │ │ ├── NSError+MTLModelException.m │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSObject+MTLComparisonAdditions.m │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.m │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.m │ │ └── extobjc │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTRuntimeExtensions.m │ │ │ ├── EXTScope.h │ │ │ ├── EXTScope.m │ │ │ └── metamacros.h │ └── README.md │ ├── PINCache │ ├── LICENSE.txt │ ├── PINCache │ │ ├── Nullability.h │ │ ├── PINCache.h │ │ ├── PINCache.m │ │ ├── PINDiskCache.h │ │ ├── PINDiskCache.m │ │ ├── PINMemoryCache.h │ │ └── PINMemoryCache.m │ └── README.md │ ├── PINRemoteImage │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ ├── Categories │ │ │ ├── NSData+ImageDetectors.h │ │ │ ├── NSData+ImageDetectors.m │ │ │ ├── PINImage+DecodedImage.h │ │ │ ├── PINImage+DecodedImage.m │ │ │ ├── PINImage+WebP.h │ │ │ └── PINImage+WebP.m │ │ │ ├── Image Categories │ │ │ ├── FLAnimatedImageView+PINRemoteImage.h │ │ │ ├── FLAnimatedImageView+PINRemoteImage.m │ │ │ ├── PINButton+PINRemoteImage.h │ │ │ ├── PINButton+PINRemoteImage.m │ │ │ ├── PINImageView+PINRemoteImage.h │ │ │ └── PINImageView+PINRemoteImage.m │ │ │ ├── PINDataTaskOperation.h │ │ │ ├── PINDataTaskOperation.m │ │ │ ├── PINProgressiveImage.h │ │ │ ├── PINProgressiveImage.m │ │ │ ├── PINRemoteImage.h │ │ │ ├── PINRemoteImageCallbacks.h │ │ │ ├── PINRemoteImageCallbacks.m │ │ │ ├── PINRemoteImageCategoryManager.h │ │ │ ├── PINRemoteImageCategoryManager.m │ │ │ ├── PINRemoteImageDownloadTask.h │ │ │ ├── PINRemoteImageDownloadTask.m │ │ │ ├── PINRemoteImageMacros.h │ │ │ ├── PINRemoteImageManager.h │ │ │ ├── PINRemoteImageManager.m │ │ │ ├── PINRemoteImageManagerResult.h │ │ │ ├── PINRemoteImageManagerResult.m │ │ │ ├── PINRemoteImageProcessorTask.h │ │ │ ├── PINRemoteImageProcessorTask.m │ │ │ ├── PINRemoteImageTask.h │ │ │ ├── PINRemoteImageTask.m │ │ │ ├── PINURLSessionManager.h │ │ │ └── PINURLSessionManager.m │ └── README.md │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── PlayerKit.xcscheme │ └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ ├── FLAnimatedImage │ ├── FLAnimatedImage-dummy.m │ ├── FLAnimatedImage-prefix.pch │ └── FLAnimatedImage.xcconfig │ ├── Mantle │ ├── Mantle-dummy.m │ ├── Mantle-prefix.pch │ └── Mantle.xcconfig │ ├── PINCache │ ├── PINCache-dummy.m │ ├── PINCache-prefix.pch │ └── PINCache.xcconfig │ ├── PINRemoteImage │ ├── PINRemoteImage-dummy.m │ ├── PINRemoteImage-prefix.pch │ └── PINRemoteImage.xcconfig │ ├── PlayerKit │ ├── PlayerKit-dummy.m │ ├── PlayerKit-prefix.pch │ └── PlayerKit.xcconfig │ └── Pods-PlayerKitDemo │ ├── Pods-PlayerKitDemo-acknowledgements.markdown │ ├── Pods-PlayerKitDemo-acknowledgements.plist │ ├── Pods-PlayerKitDemo-dummy.m │ ├── Pods-PlayerKitDemo-frameworks.sh │ ├── Pods-PlayerKitDemo-resources.sh │ ├── Pods-PlayerKitDemo.debug.xcconfig │ └── Pods-PlayerKitDemo.release.xcconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayerKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit.podspec -------------------------------------------------------------------------------- /PlayerKit/Classes/Categorys/UIControl+PlayerKitAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Categorys/UIControl+PlayerKitAdditions.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Categorys/UIControl+PlayerKitAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Categorys/UIControl+PlayerKitAdditions.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Categorys/UIViewController+PlayerKitAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Categorys/UIViewController+PlayerKitAdditions.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Categorys/UIViewController+PlayerKitAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Categorys/UIViewController+PlayerKitAdditions.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Controllers/PlayerKitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Controllers/PlayerKitViewController.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Controllers/PlayerKitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Controllers/PlayerKitViewController.m -------------------------------------------------------------------------------- /PlayerKit/Classes/PlayerKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/PlayerKit.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Protocol/PlayerKitPlayerViewProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Protocol/PlayerKitPlayerViewProtocol.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Utility/PlayerKitTimeTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Utility/PlayerKitTimeTools.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Utility/PlayerKitTimeTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Utility/PlayerKitTimeTools.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitContainer.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitContainer.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitControlProgressTipsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitControlProgressTipsView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitControlProgressTipsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitControlProgressTipsView.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitPlayerView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitPlayerView.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitProgressView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitProgressView.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitReloadTipsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitReloadTipsView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitReloadTipsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitReloadTipsView.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitToolsBottomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitToolsBottomView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitToolsBottomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitToolsBottomView.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitToolsTopView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitToolsTopView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitToolsTopView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitToolsTopView.m -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitVideoLayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitVideoLayerView.h -------------------------------------------------------------------------------- /PlayerKit/Classes/Views/PlayerKitVideoLayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Classes/Views/PlayerKitVideoLayerView.m -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-animation-animated@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-animation-animated@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-animation-animated@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-animation-animated@3x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-animation-none@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-animation-none@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-animation-none@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-animation-none@3x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-backward.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-backward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-backward@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-close.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-close@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-forward.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-forward@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-pause.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-pause@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-play.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-play@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-slider_indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-slider_indicator@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-slider_track_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-slider_track_empty@2x.png -------------------------------------------------------------------------------- /PlayerKit/Resources/player-kit-slider_track_fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKit/Resources/player-kit-slider_track_fill@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/AppDelegate.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Contents.json -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Brand Assets.launchimage/Default@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/demo-back-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/demo-back-button.imageset/Contents.json -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/demo-back-button.imageset/demo-back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/demo-back-button.imageset/demo-back-button.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/demo-back-button.imageset/demo-back-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/demo-back-button.imageset/demo-back-button@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/eye_preview_see_seen_view.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/eye_preview_see_seen_view.imageset/Contents.json -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/eye_preview_see_seen_view.imageset/eye_preview_see_seen_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/eye_preview_see_seen_view.imageset/eye_preview_see_seen_view@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/heart_like_love_vote.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/heart_like_love_vote.imageset/Contents.json -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Assets.xcassets/heart_like_love_vote.imageset/heart_like_love_vote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Assets.xcassets/heart_like_love_vote.imageset/heart_like_love_vote@2x.png -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Kuaibao/KuaibaoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Kuaibao/KuaibaoViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Kuaibao/KuaibaoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Kuaibao/KuaibaoViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sample/CustomPlayerViews/CustomPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sample/CustomPlayerViews/CustomPlayerView.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sample/CustomPlayerViews/CustomPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sample/CustomPlayerViews/CustomPlayerView.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sample/SampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sample/SampleViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sample/SampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sample/SampleViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuTableViewCell.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuTableViewCell.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuTableViewCell.xib -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Sohu/SohuViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuDetailViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuDetailViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Youku/YoukuViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Youtobe/YoutobeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Youtobe/YoutobeViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Demos/Youtobe/YoutobeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Demos/Youtobe/YoutobeViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Info.plist -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/NavigationController/BaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/NavigationController/BaseNavigationController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/NavigationController/BaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/NavigationController/BaseNavigationController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/Resouces/nba.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/Resouces/nba.mp4 -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/RootViewController/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/RootViewController/RootViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/RootViewController/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/RootViewController/RootViewController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoController.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoController.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoItem.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoItem.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoTableViewCell.h -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoTableViewCell.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/VideoController/VideoTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/VideoController/VideoTableViewCell.xib -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemo/main.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemoTests/Info.plist -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemoTests/PlayerKitDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemoTests/PlayerKitDemoTests.m -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemoUITests/Info.plist -------------------------------------------------------------------------------- /PlayerKitDemo/PlayerKitDemoUITests/PlayerKitDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/PlayerKitDemoUITests/PlayerKitDemoUITests.m -------------------------------------------------------------------------------- /PlayerKitDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Podfile -------------------------------------------------------------------------------- /PlayerKitDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Podfile.lock -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/FLAnimatedImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/FLAnimatedImage/LICENSE -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/FLAnimatedImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/FLAnimatedImage/README.md -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTScope.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSDictionary+MTLMappingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLMappingAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/Mantle/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/metamacros.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINCache/Nullability.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/Nullability.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINCache/PINCache.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/PINCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINCache/PINDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/PINDiskCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINCache/PINMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/PINMemoryCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/FLAnimatedImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/NSData+ImageDetectors.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINButton+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINDataTaskOperation.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINDataTaskOperation.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINImage+DecodedImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINProgressiveImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINProgressiveImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageCallbacks.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageCategoryManager.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageDownloadTask.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageMacros.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageMacros.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageManagerResult.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageProcessorTask.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINRemoteImageTask.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PINRemoteImage/PINURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINURLSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/PlayerKit.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitContainer.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitControlProgressTipsView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitControlProgressTipsView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitPlayerView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitPlayerView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitPlayerViewProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Protocol/PlayerKitPlayerViewProtocol.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitProgressView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitReloadTipsView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitReloadTipsView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitTimeTools.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Utility/PlayerKitTimeTools.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitToolsBottomView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitToolsBottomView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitToolsTopView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitToolsTopView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitVideoLayerView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitVideoLayerView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/PlayerKitViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Controllers/PlayerKitViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/UIControl+PlayerKitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Categorys/UIControl+PlayerKitAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Private/PlayerKit/UIViewController+PlayerKitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Categorys/UIViewController+PlayerKitAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSDictionary+MTLMappingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLMappingAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINCache/Nullability.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/Nullability.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINCache/PINCache.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/PINCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINCache/PINDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/PINDiskCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINCache/PINMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../PINCache/PINCache/PINMemoryCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/FLAnimatedImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/NSData+ImageDetectors.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINButton+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINDataTaskOperation.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINDataTaskOperation.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINImage+DecodedImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINProgressiveImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINProgressiveImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageCallbacks.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageCategoryManager.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageDownloadTask.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageMacros.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageMacros.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageManagerResult.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageProcessorTask.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINRemoteImageTask.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINRemoteImageTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PINRemoteImage/PINURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../PINRemoteImage/Pod/Classes/PINURLSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/PlayerKit.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitContainer.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitControlProgressTipsView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitControlProgressTipsView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitPlayerView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitPlayerView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitPlayerViewProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Protocol/PlayerKitPlayerViewProtocol.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitProgressView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitReloadTipsView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitReloadTipsView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitTimeTools.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Utility/PlayerKitTimeTools.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitToolsBottomView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitToolsBottomView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitToolsTopView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitToolsTopView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitVideoLayerView.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Views/PlayerKitVideoLayerView.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/PlayerKitViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Controllers/PlayerKitViewController.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/UIControl+PlayerKitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Categorys/UIControl+PlayerKitAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Headers/Public/PlayerKit/UIViewController+PlayerKitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../../PlayerKit/Classes/Categorys/UIViewController+PlayerKitAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Local Podspecs/PlayerKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Local Podspecs/PlayerKit.podspec.json -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/LICENSE.md -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLJSONAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLJSONAdapter.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLModel+NSCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLModel+NSCoding.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLModel.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLReflection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLReflection.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLTransformerErrorHandling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLTransformerErrorHandling.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/MTLValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/MTLValueTransformer.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/Mantle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSArray+MTLManipulationAdditions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLJSONKeyPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLJSONKeyPath.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLManipulationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLManipulationAdditions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLMappingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLMappingAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLMappingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSDictionary+MTLMappingAdditions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSError+MTLModelException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSError+MTLModelException.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTRuntimeExtensions.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTScope.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/extobjc/EXTScope.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/Mantle/extobjc/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/Mantle/extobjc/metamacros.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Mantle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Mantle/README.md -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/LICENSE.txt -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/Nullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/Nullability.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/PINCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/PINCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/PINCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/PINCache.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/PINDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/PINDiskCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/PINDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/PINDiskCache.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/PINMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/PINMemoryCache.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/PINCache/PINMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/PINCache/PINMemoryCache.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINCache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINCache/README.md -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/LICENSE -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImage.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageMacros.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.h -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/PINRemoteImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/PINRemoteImage/README.md -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PlayerKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PlayerKit.xcscheme -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Mantle/Mantle-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Mantle/Mantle-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Mantle/Mantle-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Mantle/Mantle-prefix.pch -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Mantle/Mantle.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Mantle/Mantle.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PINCache/PINCache-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PINCache/PINCache-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PINCache/PINCache-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PINCache/PINCache-prefix.pch -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PINCache/PINCache.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PINCache/PINCache.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-prefix.pch -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PINRemoteImage/PINRemoteImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PINRemoteImage/PINRemoteImage.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PlayerKit/PlayerKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PlayerKit/PlayerKit-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PlayerKit/PlayerKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PlayerKit/PlayerKit-prefix.pch -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/PlayerKit/PlayerKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/PlayerKit/PlayerKit.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-acknowledgements.plist -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-dummy.m -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-frameworks.sh -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo-resources.sh -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo.debug.xcconfig -------------------------------------------------------------------------------- /PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/PlayerKitDemo/Pods/Target Support Files/Pods-PlayerKitDemo/Pods-PlayerKitDemo.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PlayerKit/HEAD/README.md --------------------------------------------------------------------------------