本文共 1588 字,大约阅读时间需要 5 分钟。
? Objective-C ??NSURLSession ?????????????????????? NSURLSession ??????????????????
?? NSURLSession ???
NSURLSession ????????????????????????
??NSURLSession ?????????????????? URL??? URL ?????????????????????????
????????NSURLSession?????????????????
??????NSURLSession ?????????????????????????????????????????? Objective-C ???????????????????????
#import@interface FileDownloader : NSObject@end@implementation FileDownloader- (void)downloadFileWithURL:(NSURL *)url{ // ?????????? NSURLSession *session = [NSURLSession sharedSession]; // ?????? NSURLRequest *request = [NSURLRequest requestWithURL:url]; // ?????? DownloadTask *downloadTask = [session downloadTaskWithRequest:request completionHandler:^(NSURLResponse *response, NSHTTPURLResponseCode code, !NSError *error) { // ?????? if (error) { // ?????? NSLog(@"?????%@", error.localizedDescription); return; } // ??????? NSData *responseData = [response dataUsingEncoding:NSUTF8StringEncoding]; // ??????????? [responseData writeToFile:@"/path/to/file" atomically:YES]; // ?????? [downloadTask cancel]; // ???? [session finishTasks]; }]; // ?????? [downloadTask resume];}@end
backgroundSession ???????????completionHandler ??????????????? resume ??????????????????? Objective-C ????????????????
转载地址:http://ryifk.baihongyu.com/