亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中NSURLSessionDownloadTask如何設置代理實現文件下載

發布時間:2021-07-26 13:53:20 來源:億速云 閱讀:124 作者:小新 欄目:移動開發

小編給大家分享一下iOS中NSURLSessionDownloadTask如何設置代理實現文件下載,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

通過代理來實現文件下載的問題:

#import "ViewController.h"
@interface ViewController ()<NSURLSessionDownloadDelegate>
@end
@implementation ViewController
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
  [self delegate];
}

-(void)delegate
{
  //1.url
  NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/resources/images/minion_03.png"];
  
  //2.創建請求對象
  NSURLRequest *request = [NSURLRequest requestWithURL:url];
  
  //3.創建session :注意代理為NSURLSessionDownloadDelegate
  NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration] delegate:self delegateQueue:[NSOperationQueue mainQueue]];
  
  //4.創建Task
  NSURLSessionDownloadTask *downloadTask = [session downloadTaskWithRequest:request];
  
  //5.執行Task
  [downloadTask resume];
}

#pragma mark ----------------------
#pragma mark NSURLSessionDownloadDelegate
/**
 * 寫數據
 *
 * @param session          會話對象
 * @param downloadTask       下載任務
 * @param bytesWritten       本次寫入的數據大小
 * @param totalBytesWritten     下載的數據總大小
 * @param totalBytesExpectedToWrite 文件的總大小
 */
-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
{
  //1. 獲得文件的下載進度
  NSLog(@"%f",1.0 * totalBytesWritten/totalBytesExpectedToWrite);
}

/**
 * 當恢復下載的時候調用該方法
 *
 * @param fileOffset     從什么地方下載
 * @param expectedTotalBytes 文件的總大小
 */
-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didResumeAtOffset:(int64_t)fileOffset expectedTotalBytes:(int64_t)expectedTotalBytes
{
  NSLog(@"%s",__func__);
}

/**
 * 當下載完成的時候調用
 *
 * @param location   文件的臨時存儲路徑
 */
-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
{
  NSLog(@"%@",location);
  
  //1 拼接文件全路徑
  NSString *fullPath = [[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:downloadTask.response.suggestedFilename];
  
  //2 剪切文件
  [[NSFileManager defaultManager]moveItemAtURL:location toURL:[NSURL fileURLWithPath:fullPath] error:nil];
  NSLog(@"%@",fullPath);
}

/**
 * 請求結束
 */
-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
{
  NSLog(@"didCompleteWithError");
}
@end

看完了這篇文章,相信你對“iOS中NSURLSessionDownloadTask如何設置代理實現文件下載”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

兰西县| 龙山县| 大姚县| 黄山市| 普兰县| 彭水| 礼泉县| 乌兰县| 米林县| 云霄县| 瑞昌市| 恩施市| 界首市| 大兴区| 民权县| 呼图壁县| 兰考县| 聂荣县| 登封市| 石棉县| 定州市| 奉贤区| 东莞市| 镇康县| 定西市| 平顺县| 唐山市| 横峰县| 石狮市| 永吉县| 出国| 英吉沙县| 望城县| 和龙市| 平阳县| 铜鼓县| 崇文区| 连南| 织金县| 鲁山县| 桃园市|