├── .gitignore ├── .travis.yml ├── AFNetworking ├── AFHTTPRequestOperation.h ├── AFHTTPRequestOperation.m ├── AFHTTPRequestOperationManager.h ├── AFHTTPRequestOperationManager.m ├── AFHTTPSessionManager.h ├── AFHTTPSessionManager.m ├── AFNetworkReachabilityManager.h ├── AFNetworkReachabilityManager.m ├── AFNetworking.h ├── AFSecurityPolicy.h ├── AFSecurityPolicy.m ├── AFURLConnectionOperation.h ├── AFURLConnectionOperation.m ├── AFURLRequestSerialization.h ├── AFURLRequestSerialization.m ├── AFURLResponseSerialization.h ├── AFURLResponseSerialization.m ├── AFURLSessionManager.h └── AFURLSessionManager.m ├── DownloadManagerDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── DownloadManagerDemo.xccheckout └── xcuserdata │ └── Leo.xcuserdatad │ └── xcschemes │ ├── DownloadManagerDemo.xcscheme │ └── xcschememanagement.plist ├── DownloadManagerDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── DownloadManagerDemoTests ├── DownloadManagerDemoTests.m └── Info.plist ├── LCDownloadManager.podspec ├── LCDownloadManager ├── LCDownloadManager.h └── LCDownloadManager.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/.travis.yml -------------------------------------------------------------------------------- /AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /DownloadManagerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DownloadManagerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DownloadManagerDemo.xcodeproj/project.xcworkspace/xcshareddata/DownloadManagerDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo.xcodeproj/project.xcworkspace/xcshareddata/DownloadManagerDemo.xccheckout -------------------------------------------------------------------------------- /DownloadManagerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/DownloadManagerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/DownloadManagerDemo.xcscheme -------------------------------------------------------------------------------- /DownloadManagerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DownloadManagerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/AppDelegate.h -------------------------------------------------------------------------------- /DownloadManagerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/AppDelegate.m -------------------------------------------------------------------------------- /DownloadManagerDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /DownloadManagerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DownloadManagerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DownloadManagerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/Info.plist -------------------------------------------------------------------------------- /DownloadManagerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/ViewController.h -------------------------------------------------------------------------------- /DownloadManagerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/ViewController.m -------------------------------------------------------------------------------- /DownloadManagerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemo/main.m -------------------------------------------------------------------------------- /DownloadManagerDemoTests/DownloadManagerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemoTests/DownloadManagerDemoTests.m -------------------------------------------------------------------------------- /DownloadManagerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/DownloadManagerDemoTests/Info.plist -------------------------------------------------------------------------------- /LCDownloadManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/LCDownloadManager.podspec -------------------------------------------------------------------------------- /LCDownloadManager/LCDownloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/LCDownloadManager/LCDownloadManager.h -------------------------------------------------------------------------------- /LCDownloadManager/LCDownloadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/LCDownloadManager/LCDownloadManager.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCDownloadManager/HEAD/README.md --------------------------------------------------------------------------------