NSURLSession實現檔案上傳

來源:互聯網
上載者:User

標籤:16px   end   family   uil   available   作用   說明   bytes   請求   

(1)實現檔案上傳的方法

      /*     第一個參數:請求對象     第二個參數:請求體(要上傳的檔案資料)     block回調:     NSData:響應體     NSURLResponse:回應標頭     NSError:請求的錯誤資訊     */    NSURLSessionUploadTask *uploadTask =  [session uploadTaskWithRequest:request fromData:data completionHandler:^(NSData * __nullable data, NSURLResponse * __nullable response, NSError * __nullable error)

(2)設定代理,在代理方法中監聽檔案上傳進度

/* 調用該方法上傳檔案資料 如果檔案資料很大,那麼該方法會被調用多次 參數說明:     totalBytesSent:已經上傳的檔案資料的大小     totalBytesExpectedToSend:檔案的總大小 */-(void)URLSession:(nonnull NSURLSession *)session task:(nonnull NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend{    NSLog(@"%.2f",1.0 * totalBytesSent/totalBytesExpectedToSend);}

(3)關於NSURLSessionConfiguration相關

01 作用:可以統一配置NSURLSession,如請求逾時等02 建立的方式和使用
//建立配置的三種方式+ (NSURLSessionConfiguration *)defaultSessionConfiguration;+ (NSURLSessionConfiguration *)ephemeralSessionConfiguration;+ (NSURLSessionConfiguration *)backgroundSessionConfigurationWithIdentifier:(NSString *)identifier NS_AVAILABLE(10_10, 8_0);//統一配置NSURLSession-(NSURLSession *)session{    if (_session == nil) {        //建立NSURLSessionConfiguration        NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];        //佈建要求逾時為10秒鐘        config.timeoutIntervalForRequest = 10;        //在蜂窩網路情況下是否繼續請求(上傳或下載)        config.allowsCellularAccess = NO;        _session = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:[NSOperationQueue mainQueue]];    }    return _session;}

NSURLSession實現檔案上傳

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.