iOS開發中如何佈建要求逾時時間

來源:互聯網
上載者:User

標籤:style   blog   http   ar   io   color   os   sp   on   


1 NSString *baseUrl; 2 NSURL *url = [NSURL URLWithString:[baseUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 3 NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:10]; 4 AFJSONRequestOperation *jsonOper = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) { 5 6 } 8 failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) { 9 10 }];

以上是AFN的佈建要求逾時時間.

 

對於SDWebImage來說

在在SDWebImageDownloader.m檔案中的 downloadImageWithURL.

具體為:

1 - (id<SDWebImageOperation>)downloadImageWithURL:(NSURL *)url options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSUInteger,long long))progressBlock completed:(void (^)(UIImage *,NSData *, NSError *, BOOL))completedBlock函數。

主要是:

1 - (id)initWithURL:(NSURL *)URL cachePolicy:(NSURLRequestCachePolicy)cachePolicy timeoutInterval:(NSTimeInterval)timeoutInterval;中的timeoutInterval

決定。

 

如果請求逾時之後我們可以取消AFN的請求,通過以下代碼實現:

 1      // 1.建立AFN管理者 2     AFHTTPRequestOperationManager *mange = [AFHTTPRequestOperationManager manager]; 3      4     // 2.發送請求 5     [mange GET:url parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) { 6         // 請求成功 7         IWLog(@"請求成功"); 8         if (success) { 9             success(responseObject);10         }11         12     } failure:^(AFHTTPRequestOperation *operation, NSError *error) {13         14         IWLog(@"請求失敗");15         if (failure) {16             failure(error);17         }18     }];19     20     //3.取消請求21     [mange.operationQueue cancelAllOperations];

 

iOS開發中如何佈建要求逾時時間

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.