欢迎光临
我们一直在努力

多任务下载(支持后台、断点下载)

建站超值云服务器,限时71元/月

多任务下载(支持后台、断点下载)

项目介绍:

基于NSURLSessionDownloadTask实现多任务后台下载,支持断点下载

  1. #import "FYDownloadManager+Task.h"
  2. 使用FYDownloadManager的分类FYDownloadManager+Task来创建和管理下载任务
  3. eg: 获取所有下载任务 [FYDownloadManager shareManager].downloadItemArray
  4. 开启一个新的下载任务
  5. FYDownloadItem *item = [[FYDownloadItem alloc] init:[NSURL URLWithString:@"http://ultravideo.cs.tut.fi/video/ShakeNDry_3840x2160_30fps_420_8bit_AVC_MP4.mp4"]]; [[FYDownloadManager shareManager] addDownload:item]; [[FYDownloadManager shareManager] start:item.requestUrl];
  6. 监听下载进度
  7. 1.添加进度监听
  8. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(downloadStateChange:) name:@"FYDownload_Status" object:nil];
  9. 2.进度监听回调
  10. (void)downloadStateChange:(NSNotification *)no {
  11. NSURL *requestUrl = no.userInfo[@"requestUrl"]; FYDownloadItem *currentItem = no.userInfo[@"item"];          NSLog(@"%@___%@",currentItem.countOfBytesReceived,currentItem.countOfBytesExpectedToReceive);
  12. }

复制代码
git地址FYDownload  仓促编码会一直改进,欢迎批评指正,交流学习…

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 多任务下载(支持后台、断点下载)
分享到: 更多 (0)