Skip to content

断点下载,支持后台下载,再次打开程序、异常退出记录下载进度

License

Notifications You must be signed in to change notification settings

renzifeng/ZFDownload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b4c60fb · Mar 7, 2017

History

16 Commits
Mar 7, 2017
Mar 7, 2017
May 17, 2016
May 17, 2016
May 16, 2016
Aug 8, 2016
May 17, 2016
Mar 7, 2017

Repository files navigation

ZFDownload

特性

  • 支持断点下载
  • 异常退出,再次打开保留下载进度
  • 实时下载进度
  • 实时下载速度

要求

  • iOS 7+
  • Xcode 6+

ZFDownload的具体实现,可以看ZFPlayer,已获取1000多颗star:ZFPlayer


效果图

图片效果演示

安装

Cocoapods

pod 'ZFDownload'

使用

// 设置代理<ZFDownloadDelegate>
self.downloadManage.downloadDelegate = self;
// 指定下载URL,文件名称...
[[ZFDownloadManager sharedDownloadManager] downFileUrl:urlStr filename:name fileimage:nil];
// 设置最多同时下载个数(默认是3)
[ZFDownloadManager sharedDownloadManager].maxCount = 2;

在cell上获取实时下载进度,遵守 ZFDownloadDelegate代理,然后实现

#pragma mark - ZFDownloadDelegate

// 开始下载
- (void)startDownload:(ZFHttpRequest *)request;

// 下载中
- (void)updateCellProgress:(ZFHttpRequest *)request;

// 下载完成
- (void)finishedDownload:(ZFHttpRequest *)request;

联系我

License

ZFDownload is available under the MIT license. See the LICENSE file for more info.

About

断点下载,支持后台下载,再次打开程序、异常退出记录下载进度

Resources

License

Stars

Watchers

Forks

Packages

No packages published