├── .gitignore ├── Demo ├── HWIFileDownload.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── HWIFileDownload │ ├── AssetCatalog.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── launch-320x480.png │ │ ├── launch-320x480@2x-1.png │ │ ├── launch-320x480@2x.png │ │ ├── launch-320x568@2x-1.png │ │ ├── launch-320x568@2x.png │ │ ├── launch-375x667@2x.png │ │ ├── launch-414x736@3x.png │ │ └── launch-736x414@3x.png │ ├── DemoDownloadAppDelegate.h │ ├── DemoDownloadAppDelegate.m │ ├── DemoDownloadItem.h │ ├── DemoDownloadItem.m │ ├── DemoDownloadItemStatus.h │ ├── DemoDownloadNotifications.h │ ├── DemoDownloadNotifications.m │ ├── DemoDownloadScreenshot.png │ ├── DemoDownloadStore.h │ ├── DemoDownloadStore.m │ ├── DemoDownloadTableViewCell.xib │ ├── DemoDownloadTableViewController.h │ ├── DemoDownloadTableViewController.m │ ├── FontAwesome.otf │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HWIBackgroundSessionCompletionHandlerBlock.h ├── HWIFileDownload.podspec.json ├── HWIFileDownloadDelegate.h ├── HWIFileDownloadItem.h ├── HWIFileDownloadItem.m ├── HWIFileDownloadProgress.h ├── HWIFileDownloadProgress.m ├── HWIFileDownloader.h ├── HWIFileDownloader.m ├── LICENCE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/HWIFileDownload.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/HWIFileDownload.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x480.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x480@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x480@2x-1.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x480@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x480@2x.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x568@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x568@2x-1.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-320x568@2x.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-375x667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-375x667@2x.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-414x736@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-414x736@3x.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-736x414@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/AssetCatalog.xcassets/LaunchImage.launchimage/launch-736x414@3x.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadAppDelegate.h -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadAppDelegate.m -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadItem.h -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadItem.m -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadItemStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadItemStatus.h -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadNotifications.h -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadNotifications.m -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadScreenshot.png -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadStore.h -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadStore.m -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadTableViewCell.xib -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadTableViewController.h -------------------------------------------------------------------------------- /Demo/HWIFileDownload/DemoDownloadTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/DemoDownloadTableViewController.m -------------------------------------------------------------------------------- /Demo/HWIFileDownload/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/FontAwesome.otf -------------------------------------------------------------------------------- /Demo/HWIFileDownload/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/Info.plist -------------------------------------------------------------------------------- /Demo/HWIFileDownload/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/HWIFileDownload/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/Demo/HWIFileDownload/main.m -------------------------------------------------------------------------------- /HWIBackgroundSessionCompletionHandlerBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIBackgroundSessionCompletionHandlerBlock.h -------------------------------------------------------------------------------- /HWIFileDownload.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownload.podspec.json -------------------------------------------------------------------------------- /HWIFileDownloadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloadDelegate.h -------------------------------------------------------------------------------- /HWIFileDownloadItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloadItem.h -------------------------------------------------------------------------------- /HWIFileDownloadItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloadItem.m -------------------------------------------------------------------------------- /HWIFileDownloadProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloadProgress.h -------------------------------------------------------------------------------- /HWIFileDownloadProgress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloadProgress.m -------------------------------------------------------------------------------- /HWIFileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloader.h -------------------------------------------------------------------------------- /HWIFileDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/HWIFileDownloader.m -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heikowi/HWIFileDownload/HEAD/README.md --------------------------------------------------------------------------------