├── .gitignore ├── DownLoadManager.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── DownLoadManager.xccheckout │ └── xcuserdata │ │ ├── appleapple.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── panzifu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── sev.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── appleapple.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── DownLoadManager.xcscheme │ │ └── xcschememanagement.plist │ ├── chunyu.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── DownLoadManager.xcscheme │ │ └── xcschememanagement.plist │ ├── panzifu.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── DownLoadManager.xcscheme │ │ └── xcschememanagement.plist │ └── sev.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── DownLoadManager.xcscheme │ └── xcschememanagement.plist ├── DownLoadManager ├── ASIHTTPRequest │ ├── ASIAuthenticationDialog.h │ ├── ASIAuthenticationDialog.m │ ├── ASICacheDelegate.h │ ├── ASIDataCompressor.h │ ├── ASIDataCompressor.m │ ├── ASIDataDecompressor.h │ ├── ASIDataDecompressor.m │ ├── ASIDownloadCache.h │ ├── ASIDownloadCache.m │ ├── ASIFormDataRequest.h │ ├── ASIFormDataRequest.m │ ├── ASIHTTPRequest.h │ ├── ASIHTTPRequest.m │ ├── ASIHTTPRequestConfig.h │ ├── ASIHTTPRequestDelegate.h │ ├── ASIInputStream.h │ ├── ASIInputStream.m │ ├── ASINSStringAdditions.h │ ├── ASINSStringAdditions.m │ ├── ASINetworkQueue.h │ ├── ASINetworkQueue.m │ ├── ASIProgressDelegate.h │ ├── NSHTTPCookieAdditions.h │ ├── NSHTTPCookieAdditions.m │ ├── Reachability.h │ └── Reachability.m ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── Main.storyboard ├── DownLoadManager-Info.plist ├── DownLoadManager-Prefix.pch ├── DownManager │ ├── CommonHelper.h │ ├── CommonHelper.m │ ├── DownloadDelegate.h │ ├── FileModel.h │ ├── FileModel.m │ ├── FilesDownManage.h │ ├── FilesDownManage.m │ ├── MidHttpRequest.h │ └── MidHttpRequest.m ├── DownManagerUI │ ├── DownloadCell.h │ ├── DownloadCell.m │ ├── DownloadViewController.h │ ├── DownloadViewController.m │ ├── DownloadViewController.xib │ ├── FinishedCell.h │ ├── FinishedCell.m │ ├── SettingViewController.h │ ├── SettingViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── image │ │ ├── 下载完成-删除.png │ │ ├── 下载完成-删除@2x.png │ │ ├── 下载弹出按钮.png │ │ ├── 下载弹出按钮@2x.png │ │ ├── 下载弹出背景.png │ │ ├── 下载弹出背景@2x.png │ │ ├── 下载弹出进度条.png │ │ ├── 下载弹出进度条@2x.png │ │ ├── 下载弹出进度条进度背景点九.png │ │ ├── 下载弹出进度条进度背景点九@2x.png │ │ ├── 下载管理-上传图标.png │ │ ├── 下载管理-上传图标@2x.png │ │ ├── 下载管理-开始按钮.png │ │ ├── 下载管理-开始按钮@2x.png │ │ ├── 下载管理-暂停按钮.png │ │ ├── 下载管理-暂停按钮@2x.png │ │ ├── 下载管理下载图标.png │ │ ├── 下载管理下载图标@2x.png │ │ ├── 下载管理单条背景.png │ │ ├── 下载管理单条背景@2x.png │ │ ├── 下载管理取消按钮.png │ │ ├── 下载管理取消按钮@2x.png │ │ ├── 下载管理进度条背景.png │ │ ├── 下载管理进度条背景@2x.png │ │ ├── 下载管理进度背景点九.png │ │ ├── 下载管理进度背景点九@2x.png │ │ ├── 两项选项卡右1.png │ │ ├── 两项选项卡右1@2x.png │ │ ├── 两项选项卡右2.png │ │ ├── 两项选项卡右2@2x.png │ │ ├── 两项选项卡左1.png │ │ ├── 两项选项卡左1@2x.png │ │ ├── 两项选项卡左2.png │ │ ├── 两项选项卡左2@2x.png │ │ ├── 图片-分类大背景.png │ │ ├── 显示信息数目背景.png │ │ └── 显示信息数目背景@2x.png ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Launch Screen.storyboard ├── README.md ├── en.lproj │ └── InfoPlist.strings └── main.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/.gitignore -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/project.xcworkspace/xcshareddata/DownLoadManager.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/project.xcworkspace/xcshareddata/DownLoadManager.xccheckout -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/project.xcworkspace/xcuserdata/appleapple.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/project.xcworkspace/xcuserdata/appleapple.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/project.xcworkspace/xcuserdata/panzifu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/project.xcworkspace/xcuserdata/panzifu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/project.xcworkspace/xcuserdata/sev.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/project.xcworkspace/xcuserdata/sev.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/appleapple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/appleapple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/appleapple.xcuserdatad/xcschemes/DownLoadManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/appleapple.xcuserdatad/xcschemes/DownLoadManager.xcscheme -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/appleapple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/appleapple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/chunyu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/chunyu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/chunyu.xcuserdatad/xcschemes/DownLoadManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/chunyu.xcuserdatad/xcschemes/DownLoadManager.xcscheme -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/chunyu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/chunyu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/panzifu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/panzifu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/panzifu.xcuserdatad/xcschemes/DownLoadManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/panzifu.xcuserdatad/xcschemes/DownLoadManager.xcscheme -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/panzifu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/panzifu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/sev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/sev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/sev.xcuserdatad/xcschemes/DownLoadManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/sev.xcuserdatad/xcschemes/DownLoadManager.xcscheme -------------------------------------------------------------------------------- /DownLoadManager.xcodeproj/xcuserdata/sev.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager.xcodeproj/xcuserdata/sev.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIAuthenticationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIAuthenticationDialog.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIAuthenticationDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIAuthenticationDialog.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASICacheDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASICacheDelegate.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIDataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIDataCompressor.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIDataCompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIDataCompressor.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIDataDecompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIDataDecompressor.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIDataDecompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIDataDecompressor.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIDownloadCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIDownloadCache.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIDownloadCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIDownloadCache.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIFormDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIFormDataRequest.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIFormDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIFormDataRequest.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIHTTPRequest.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIHTTPRequest.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIHTTPRequestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIHTTPRequestConfig.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIHTTPRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIHTTPRequestDelegate.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIInputStream.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIInputStream.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASINSStringAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASINSStringAdditions.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASINSStringAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASINSStringAdditions.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASINetworkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASINetworkQueue.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASINetworkQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASINetworkQueue.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/ASIProgressDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/ASIProgressDelegate.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/NSHTTPCookieAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/NSHTTPCookieAdditions.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/NSHTTPCookieAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/NSHTTPCookieAdditions.m -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/Reachability.h -------------------------------------------------------------------------------- /DownLoadManager/ASIHTTPRequest/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/ASIHTTPRequest/Reachability.m -------------------------------------------------------------------------------- /DownLoadManager/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/AppDelegate.h -------------------------------------------------------------------------------- /DownLoadManager/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/AppDelegate.m -------------------------------------------------------------------------------- /DownLoadManager/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DownLoadManager/DownLoadManager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownLoadManager-Info.plist -------------------------------------------------------------------------------- /DownLoadManager/DownLoadManager-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownLoadManager-Prefix.pch -------------------------------------------------------------------------------- /DownLoadManager/DownManager/CommonHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/CommonHelper.h -------------------------------------------------------------------------------- /DownLoadManager/DownManager/CommonHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/CommonHelper.m -------------------------------------------------------------------------------- /DownLoadManager/DownManager/DownloadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/DownloadDelegate.h -------------------------------------------------------------------------------- /DownLoadManager/DownManager/FileModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/FileModel.h -------------------------------------------------------------------------------- /DownLoadManager/DownManager/FileModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/FileModel.m -------------------------------------------------------------------------------- /DownLoadManager/DownManager/FilesDownManage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/FilesDownManage.h -------------------------------------------------------------------------------- /DownLoadManager/DownManager/FilesDownManage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/FilesDownManage.m -------------------------------------------------------------------------------- /DownLoadManager/DownManager/MidHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/MidHttpRequest.h -------------------------------------------------------------------------------- /DownLoadManager/DownManager/MidHttpRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManager/MidHttpRequest.m -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/DownloadCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/DownloadCell.h -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/DownloadCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/DownloadCell.m -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/DownloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/DownloadViewController.h -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/DownloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/DownloadViewController.m -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/DownloadViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/DownloadViewController.xib -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/FinishedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/FinishedCell.h -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/FinishedCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/FinishedCell.m -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/SettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/SettingViewController.h -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/SettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/SettingViewController.m -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/ViewController.h -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/ViewController.m -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载完成-删除.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载完成-删除.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载完成-删除@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载完成-删除@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出按钮.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出按钮@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出按钮@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出背景.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出背景@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出背景@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出进度条.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出进度条.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出进度条@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出进度条@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出进度条进度背景点九.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出进度条进度背景点九.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载弹出进度条进度背景点九@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载弹出进度条进度背景点九@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理-上传图标.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理-上传图标.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理-上传图标@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理-上传图标@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理-开始按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理-开始按钮.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理-开始按钮@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理-开始按钮@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理-暂停按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理-暂停按钮.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理-暂停按钮@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理-暂停按钮@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理下载图标.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理下载图标.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理下载图标@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理下载图标@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理单条背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理单条背景.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理单条背景@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理单条背景@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理取消按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理取消按钮.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理取消按钮@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理取消按钮@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理进度条背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理进度条背景.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理进度条背景@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理进度条背景@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理进度背景点九.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理进度背景点九.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/下载管理进度背景点九@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/下载管理进度背景点九@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡右1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡右1.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡右1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡右1@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡右2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡右2.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡右2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡右2@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡左1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡左1.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡左1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡左1@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡左2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡左2.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/两项选项卡左2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/两项选项卡左2@2x.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/图片-分类大背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/图片-分类大背景.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/显示信息数目背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/显示信息数目背景.png -------------------------------------------------------------------------------- /DownLoadManager/DownManagerUI/image/显示信息数目背景@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/DownManagerUI/image/显示信息数目背景@2x.png -------------------------------------------------------------------------------- /DownLoadManager/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DownLoadManager/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /DownLoadManager/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/Launch Screen.storyboard -------------------------------------------------------------------------------- /DownLoadManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/README.md -------------------------------------------------------------------------------- /DownLoadManager/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DownLoadManager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/DownLoadManager/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerandy163com/DownLoadManager/HEAD/README.md --------------------------------------------------------------------------------