├── .gitignore ├── .travis.yml ├── AVPlayerCacheLibrary.podspec ├── AVPlayerCacheLibrary ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ReplaceMe.m │ ├── TPlayerView.h │ ├── TPlayerView.m │ ├── TVideoDownOperation.h │ ├── TVideoDownOperation.m │ ├── TVideoDownQueue.h │ ├── TVideoDownQueue.m │ ├── TVideoFileManager.h │ ├── TVideoFileManager.m │ ├── TVideoLoadManager.h │ ├── TVideoLoadManager.m │ ├── TVideoLoader.h │ └── TVideoLoader.m ├── Example ├── AVPlayerCacheLibrary.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AVPlayerCacheLibrary-Example.xcscheme ├── AVPlayerCacheLibrary.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AVPlayerCacheLibrary │ ├── AVPlayerCacheLibrary-Info.plist │ ├── AVPlayerCacheLibrary-Prefix.pch │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── NSString+Helper.h │ ├── NSString+Helper.m │ ├── TAppDelegate.h │ ├── TAppDelegate.m │ ├── TViewController.h │ ├── TViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── AVPlayerCacheLibrary.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Target Support Files │ │ ├── AVPlayerCacheLibrary │ │ ├── AVPlayerCacheLibrary-dummy.m │ │ ├── AVPlayerCacheLibrary-prefix.pch │ │ ├── AVPlayerCacheLibrary-umbrella.h │ │ ├── AVPlayerCacheLibrary.modulemap │ │ ├── AVPlayerCacheLibrary.xcconfig │ │ └── Info.plist │ │ ├── Pods-AVPlayerCacheLibrary_Example │ │ ├── Info.plist │ │ ├── Pods-AVPlayerCacheLibrary_Example-acknowledgements.markdown │ │ ├── Pods-AVPlayerCacheLibrary_Example-acknowledgements.plist │ │ ├── Pods-AVPlayerCacheLibrary_Example-dummy.m │ │ ├── Pods-AVPlayerCacheLibrary_Example-frameworks.sh │ │ ├── Pods-AVPlayerCacheLibrary_Example-resources.sh │ │ ├── Pods-AVPlayerCacheLibrary_Example-umbrella.h │ │ ├── Pods-AVPlayerCacheLibrary_Example.debug.xcconfig │ │ ├── Pods-AVPlayerCacheLibrary_Example.modulemap │ │ └── Pods-AVPlayerCacheLibrary_Example.release.xcconfig │ │ └── Pods-AVPlayerCacheLibrary_Tests │ │ ├── Info.plist │ │ ├── Pods-AVPlayerCacheLibrary_Tests-acknowledgements.markdown │ │ ├── Pods-AVPlayerCacheLibrary_Tests-acknowledgements.plist │ │ ├── Pods-AVPlayerCacheLibrary_Tests-dummy.m │ │ ├── Pods-AVPlayerCacheLibrary_Tests-frameworks.sh │ │ ├── Pods-AVPlayerCacheLibrary_Tests-resources.sh │ │ ├── Pods-AVPlayerCacheLibrary_Tests-umbrella.h │ │ ├── Pods-AVPlayerCacheLibrary_Tests.debug.xcconfig │ │ ├── Pods-AVPlayerCacheLibrary_Tests.modulemap │ │ └── Pods-AVPlayerCacheLibrary_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/.travis.yml -------------------------------------------------------------------------------- /AVPlayerCacheLibrary.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary.podspec -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/ReplaceMe.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TPlayerView.h -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TPlayerView.m -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoDownOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoDownOperation.h -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoDownOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoDownOperation.m -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoDownQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoDownQueue.h -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoDownQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoDownQueue.m -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoFileManager.h -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoFileManager.m -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoLoadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoLoadManager.h -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoLoadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoLoadManager.m -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoLoader.h -------------------------------------------------------------------------------- /AVPlayerCacheLibrary/Classes/TVideoLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/AVPlayerCacheLibrary/Classes/TVideoLoader.m -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary.xcodeproj/xcshareddata/xcschemes/AVPlayerCacheLibrary-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary.xcodeproj/xcshareddata/xcschemes/AVPlayerCacheLibrary-Example.xcscheme -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/AVPlayerCacheLibrary-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/AVPlayerCacheLibrary-Info.plist -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/AVPlayerCacheLibrary-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/AVPlayerCacheLibrary-Prefix.pch -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/NSString+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/NSString+Helper.h -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/NSString+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/NSString+Helper.m -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/TAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/TAppDelegate.h -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/TAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/TAppDelegate.m -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/TViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/TViewController.h -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/TViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/TViewController.m -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/AVPlayerCacheLibrary/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/AVPlayerCacheLibrary/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AVPlayerCacheLibrary.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Local Podspecs/AVPlayerCacheLibrary.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/AVPlayerCacheLibrary/AVPlayerCacheLibrary.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AVPlayerCacheLibrary/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/AVPlayerCacheLibrary/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Example/Pods-AVPlayerCacheLibrary_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Pods/Target Support Files/Pods-AVPlayerCacheLibrary_Tests/Pods-AVPlayerCacheLibrary_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taohailong/AVPlayerCache/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------