├── .DS_Store ├── HWDownloadDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── wangqibin.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ └── HWDownloadDemo.xcscheme └── xcuserdata │ └── wangqibin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── HWDownloadDemo ├── Categorys │ ├── NSArray+Crash.h │ ├── NSArray+Crash.m │ ├── NSString+HW.h │ ├── NSString+HW.m │ ├── UIColor+HW.h │ ├── UIColor+HW.m │ ├── UIImage+HW.h │ ├── UIImage+HW.m │ ├── UIView+Extension.h │ └── UIView+Extension.m ├── Common │ ├── .DS_Store │ ├── HWDownloadManager │ │ ├── HWDataBaseManager.h │ │ ├── HWDataBaseManager.m │ │ ├── HWDownload.h │ │ ├── HWDownloadManager.h │ │ ├── HWDownloadManager.m │ │ ├── HWDownloadModel.h │ │ ├── HWDownloadModel.m │ │ ├── NSURLSession+CorrectedResumeData.h │ │ └── NSURLSession+CorrectedResumeData.m │ ├── HWNetworkReachabilityManager.h │ ├── HWNetworkReachabilityManager.m │ ├── HWProgressHUD.h │ ├── HWProgressHUD.m │ ├── HWToolBox.h │ ├── HWToolBox.m │ └── SwizzlingDefine.h ├── Home │ ├── HWPlayVC │ │ └── Controller │ │ │ ├── HWPlayVC.h │ │ │ └── HWPlayVC.m │ └── Home │ │ ├── Controller │ │ ├── HWHomeVC.h │ │ └── HWHomeVC.m │ │ └── View │ │ ├── HWDownloadButton.h │ │ ├── HWDownloadButton.m │ │ ├── HWHomeCell.h │ │ └── HWHomeCell.m ├── Main │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── HWBaseViewController.h │ ├── HWBaseViewController.m │ ├── NavigationController │ │ ├── HWNavigationController.h │ │ ├── HWNavigationController.m │ │ ├── UINavigationBar+Swizzling.h │ │ ├── UINavigationBar+Swizzling.m │ │ ├── UINavigationItem+Swizzling.h │ │ └── UINavigationItem+Swizzling.m │ └── TabBarController │ │ ├── HWTabBarController.h │ │ ├── HWTabBarController.m │ │ ├── HWTabBarView.h │ │ └── HWTabBarView.m ├── Me │ ├── Cache │ │ └── Controller │ │ │ ├── HWCacheBaseVC.h │ │ │ ├── HWCacheBaseVC.m │ │ │ ├── HWCacheVC.h │ │ │ ├── HWCacheVC.m │ │ │ ├── HWDownloadingVC.h │ │ │ └── HWDownloadingVC.m │ ├── Me │ │ └── Controller │ │ │ ├── HWMeVC.h │ │ │ └── HWMeVC.m │ └── Setting │ │ └── Controller │ │ ├── HWSettingVC.h │ │ └── HWSettingVC.m ├── Other │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── GlobeConst.h │ ├── GlobeConst.m │ ├── GlobeHeader.h │ ├── Images │ │ └── Common │ │ │ ├── com_download_default@2x.png │ │ │ ├── com_download_default@3x.png │ │ │ ├── com_download_error@2x.png │ │ │ ├── com_download_error@3x.png │ │ │ ├── com_download_finish@2x.png │ │ │ ├── com_download_finish@3x.png │ │ │ ├── com_download_pause@2x.png │ │ │ ├── com_download_pause@3x.png │ │ │ ├── com_download_waiting@2x.png │ │ │ ├── com_download_waiting@3x.png │ │ │ ├── com_loading01@2x.png │ │ │ ├── com_loading02@2x.png │ │ │ ├── com_loading03@2x.png │ │ │ ├── com_loading04@2x.png │ │ │ ├── com_loading05@2x.png │ │ │ ├── com_loading06@2x.png │ │ │ ├── com_loading07@2x.png │ │ │ ├── com_loading08@2x.png │ │ │ ├── nav_back@2x.png │ │ │ ├── nav_back@3x.png │ │ │ ├── nav_cancelBtn@2x.png │ │ │ ├── nav_cancelBtn@3x.png │ │ │ ├── nav_deleteBtn@2x.png │ │ │ ├── nav_deleteBtn@3x.png │ │ │ ├── tabbar_home_nor@2x.png │ │ │ ├── tabbar_home_nor@3x.png │ │ │ ├── tabbar_home_sel@2x.png │ │ │ ├── tabbar_home_sel@3x.png │ │ │ ├── tabbar_me_nor@2x.png │ │ │ ├── tabbar_me_nor@3x.png │ │ │ ├── tabbar_me_sel@2x.png │ │ │ └── tabbar_me_sel@3x.png │ ├── Info.plist │ ├── PrefixHeader.pch │ ├── main.m │ └── testData.plist └── Vender │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m │ └── MJExtension │ ├── LICENSE │ ├── MJExtension │ ├── MJExtension.h │ ├── MJExtensionConst.h │ ├── MJExtensionConst.m │ ├── MJFoundation.h │ ├── MJFoundation.m │ ├── MJProperty.h │ ├── MJProperty.m │ ├── MJPropertyKey.h │ ├── MJPropertyKey.m │ ├── MJPropertyType.h │ ├── MJPropertyType.m │ ├── NSObject+MJClass.h │ ├── NSObject+MJClass.m │ ├── NSObject+MJCoding.h │ ├── NSObject+MJCoding.m │ ├── NSObject+MJKeyValue.h │ ├── NSObject+MJKeyValue.m │ ├── NSObject+MJProperty.h │ ├── NSObject+MJProperty.m │ ├── NSString+MJExtension.h │ └── NSString+MJExtension.m │ └── README.md ├── HWDownloadDemoTests ├── HWDownloadDemoTests.m └── Info.plist ├── HWDownloadDemoUITests ├── HWDownloadDemoUITests.m └── Info.plist └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/.DS_Store -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/project.xcworkspace/xcuserdata/wangqibin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/project.xcworkspace/xcuserdata/wangqibin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/project.xcworkspace/xcuserdata/wangqibin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/project.xcworkspace/xcuserdata/wangqibin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/xcshareddata/xcschemes/HWDownloadDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/xcshareddata/xcschemes/HWDownloadDemo.xcscheme -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/xcuserdata/wangqibin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/xcuserdata/wangqibin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HWDownloadDemo.xcodeproj/xcuserdata/wangqibin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo.xcodeproj/xcuserdata/wangqibin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/NSArray+Crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/NSArray+Crash.h -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/NSArray+Crash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/NSArray+Crash.m -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/NSString+HW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/NSString+HW.h -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/NSString+HW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/NSString+HW.m -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/UIColor+HW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/UIColor+HW.h -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/UIColor+HW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/UIColor+HW.m -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/UIImage+HW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/UIImage+HW.h -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/UIImage+HW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/UIImage+HW.m -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/UIView+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/UIView+Extension.h -------------------------------------------------------------------------------- /HWDownloadDemo/Categorys/UIView+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Categorys/UIView+Extension.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/.DS_Store -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDataBaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDataBaseManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDataBaseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDataBaseManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDownload.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDownloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDownloadManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDownloadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDownloadManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDownloadModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDownloadModel.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/HWDownloadModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/HWDownloadModel.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/NSURLSession+CorrectedResumeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/NSURLSession+CorrectedResumeData.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWDownloadManager/NSURLSession+CorrectedResumeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWDownloadManager/NSURLSession+CorrectedResumeData.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWNetworkReachabilityManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWNetworkReachabilityManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWProgressHUD.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWProgressHUD.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWToolBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWToolBox.h -------------------------------------------------------------------------------- /HWDownloadDemo/Common/HWToolBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/HWToolBox.m -------------------------------------------------------------------------------- /HWDownloadDemo/Common/SwizzlingDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Common/SwizzlingDefine.h -------------------------------------------------------------------------------- /HWDownloadDemo/Home/HWPlayVC/Controller/HWPlayVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/HWPlayVC/Controller/HWPlayVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Home/HWPlayVC/Controller/HWPlayVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/HWPlayVC/Controller/HWPlayVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Home/Home/Controller/HWHomeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/Home/Controller/HWHomeVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Home/Home/Controller/HWHomeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/Home/Controller/HWHomeVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Home/Home/View/HWDownloadButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/Home/View/HWDownloadButton.h -------------------------------------------------------------------------------- /HWDownloadDemo/Home/Home/View/HWDownloadButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/Home/View/HWDownloadButton.m -------------------------------------------------------------------------------- /HWDownloadDemo/Home/Home/View/HWHomeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/Home/View/HWHomeCell.h -------------------------------------------------------------------------------- /HWDownloadDemo/Home/Home/View/HWHomeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Home/Home/View/HWHomeCell.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/AppDelegate.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/AppDelegate.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/HWBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/HWBaseViewController.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/HWBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/HWBaseViewController.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/NavigationController/HWNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/NavigationController/HWNavigationController.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/NavigationController/HWNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/NavigationController/HWNavigationController.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/NavigationController/UINavigationBar+Swizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/NavigationController/UINavigationBar+Swizzling.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/NavigationController/UINavigationBar+Swizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/NavigationController/UINavigationBar+Swizzling.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/NavigationController/UINavigationItem+Swizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/NavigationController/UINavigationItem+Swizzling.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/NavigationController/UINavigationItem+Swizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/NavigationController/UINavigationItem+Swizzling.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/TabBarController/HWTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/TabBarController/HWTabBarController.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/TabBarController/HWTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/TabBarController/HWTabBarController.m -------------------------------------------------------------------------------- /HWDownloadDemo/Main/TabBarController/HWTabBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/TabBarController/HWTabBarView.h -------------------------------------------------------------------------------- /HWDownloadDemo/Main/TabBarController/HWTabBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Main/TabBarController/HWTabBarView.m -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Cache/Controller/HWCacheBaseVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Cache/Controller/HWCacheBaseVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Cache/Controller/HWCacheBaseVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Cache/Controller/HWCacheBaseVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Cache/Controller/HWCacheVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Cache/Controller/HWCacheVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Cache/Controller/HWCacheVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Cache/Controller/HWCacheVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Cache/Controller/HWDownloadingVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Cache/Controller/HWDownloadingVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Cache/Controller/HWDownloadingVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Cache/Controller/HWDownloadingVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Me/Controller/HWMeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Me/Controller/HWMeVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Me/Controller/HWMeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Me/Controller/HWMeVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Setting/Controller/HWSettingVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Setting/Controller/HWSettingVC.h -------------------------------------------------------------------------------- /HWDownloadDemo/Me/Setting/Controller/HWSettingVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Me/Setting/Controller/HWSettingVC.m -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HWDownloadDemo/Other/GlobeConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/GlobeConst.h -------------------------------------------------------------------------------- /HWDownloadDemo/Other/GlobeConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/GlobeConst.m -------------------------------------------------------------------------------- /HWDownloadDemo/Other/GlobeHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/GlobeHeader.h -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_default@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_default@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_error@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_error@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_finish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_finish@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_finish@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_finish@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_pause@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_pause@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_waiting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_waiting@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_download_waiting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_download_waiting@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading01@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading02@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading03@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading04@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading05@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading05@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading06@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading06@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading07@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading07@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/com_loading08@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/com_loading08@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/nav_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/nav_back@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/nav_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/nav_back@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/nav_cancelBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/nav_cancelBtn@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/nav_cancelBtn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/nav_cancelBtn@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/nav_deleteBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/nav_deleteBtn@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/nav_deleteBtn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/nav_deleteBtn@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_home_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_home_nor@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_home_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_home_nor@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_home_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_home_sel@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_home_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_home_sel@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_me_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_me_nor@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_me_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_me_nor@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_me_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_me_sel@2x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Images/Common/tabbar_me_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Images/Common/tabbar_me_sel@3x.png -------------------------------------------------------------------------------- /HWDownloadDemo/Other/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/Info.plist -------------------------------------------------------------------------------- /HWDownloadDemo/Other/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/PrefixHeader.pch -------------------------------------------------------------------------------- /HWDownloadDemo/Other/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/main.m -------------------------------------------------------------------------------- /HWDownloadDemo/Other/testData.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Other/testData.plist -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/LICENSE -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/README.md -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/README.markdown -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/LICENSE -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJExtensionConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJExtensionConst.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJFoundation.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJProperty.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyKey.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/MJPropertyType.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJClass.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJCoding.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJKeyValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJKeyValue.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSObject+MJProperty.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/MJExtension/NSString+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/MJExtension/NSString+MJExtension.m -------------------------------------------------------------------------------- /HWDownloadDemo/Vender/MJExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemo/Vender/MJExtension/README.md -------------------------------------------------------------------------------- /HWDownloadDemoTests/HWDownloadDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemoTests/HWDownloadDemoTests.m -------------------------------------------------------------------------------- /HWDownloadDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemoTests/Info.plist -------------------------------------------------------------------------------- /HWDownloadDemoUITests/HWDownloadDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemoUITests/HWDownloadDemoUITests.m -------------------------------------------------------------------------------- /HWDownloadDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/HWDownloadDemoUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroWqb/HWDownloadDemo/HEAD/README.md --------------------------------------------------------------------------------