├── README.md ├── XZDownloadTask.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── XZDownloadTask.xccheckout │ └── xcuserdata │ │ └── xiazer.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── xiazer.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── XZDownloadTask.xcscheme │ └── xcschememanagement.plist ├── XZDownloadTask ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MultDownloadViewController.h ├── MultDownloadViewController.m ├── SingleDownloadViewController.h ├── SingleDownloadViewController.m ├── ViewController.h ├── ViewController.m ├── XZDownload-Prefix.pch ├── XZDownloadElement.h ├── XZDownloadElement.m ├── XZDownloadGroupManager.h ├── XZDownloadGroupManager.m ├── XZDownloadManager.h ├── XZDownloadManager.m ├── XZDownloadResponse.h ├── XZDownloadResponse.m ├── XZDownloadView.h ├── XZDownloadView.m └── main.m ├── XZDownloadTaskTests ├── Info.plist └── XZDownloadTaskTests.m └── XZDownlod.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/README.md -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/project.xcworkspace/xcshareddata/XZDownloadTask.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/project.xcworkspace/xcshareddata/XZDownloadTask.xccheckout -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/project.xcworkspace/xcuserdata/xiazer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/project.xcworkspace/xcuserdata/xiazer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/project.xcworkspace/xcuserdata/xiazer.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/project.xcworkspace/xcuserdata/xiazer.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/xcuserdata/xiazer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/xcuserdata/xiazer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/xcuserdata/xiazer.xcuserdatad/xcschemes/XZDownloadTask.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/xcuserdata/xiazer.xcuserdatad/xcschemes/XZDownloadTask.xcscheme -------------------------------------------------------------------------------- /XZDownloadTask.xcodeproj/xcuserdata/xiazer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask.xcodeproj/xcuserdata/xiazer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /XZDownloadTask/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/AppDelegate.h -------------------------------------------------------------------------------- /XZDownloadTask/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/AppDelegate.m -------------------------------------------------------------------------------- /XZDownloadTask/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /XZDownloadTask/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XZDownloadTask/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XZDownloadTask/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/Info.plist -------------------------------------------------------------------------------- /XZDownloadTask/MultDownloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/MultDownloadViewController.h -------------------------------------------------------------------------------- /XZDownloadTask/MultDownloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/MultDownloadViewController.m -------------------------------------------------------------------------------- /XZDownloadTask/SingleDownloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/SingleDownloadViewController.h -------------------------------------------------------------------------------- /XZDownloadTask/SingleDownloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/SingleDownloadViewController.m -------------------------------------------------------------------------------- /XZDownloadTask/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/ViewController.h -------------------------------------------------------------------------------- /XZDownloadTask/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/ViewController.m -------------------------------------------------------------------------------- /XZDownloadTask/XZDownload-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownload-Prefix.pch -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadElement.h -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadElement.m -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadGroupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadGroupManager.h -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadGroupManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadGroupManager.m -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadManager.h -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadManager.m -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadResponse.h -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadResponse.m -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadView.h -------------------------------------------------------------------------------- /XZDownloadTask/XZDownloadView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/XZDownloadView.m -------------------------------------------------------------------------------- /XZDownloadTask/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTask/main.m -------------------------------------------------------------------------------- /XZDownloadTaskTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTaskTests/Info.plist -------------------------------------------------------------------------------- /XZDownloadTaskTests/XZDownloadTaskTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownloadTaskTests/XZDownloadTaskTests.m -------------------------------------------------------------------------------- /XZDownlod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingundertree/XZDownloadTask/HEAD/XZDownlod.gif --------------------------------------------------------------------------------