- //
- // NSURLSession+CorrectedResumeData.h
- // jiaPei
- //
- // Created by 张嵘 on 2018/12/4.
- // Copyright © 2018 JCZ. All rights reserved.
- // 用于修复iOS 10.0、10.1系统暂停后继续下载错误问题
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSURLSession (CorrectedResumeData)
- - (NSURLSessionDownloadTask *)downloadTaskWithCorrectResumeData:(NSData *)resumeData;
- @end
- NS_ASSUME_NONNULL_END
|