下载小文件的方式
下载小文件的方式
// 1.NSData dataWithContentsOfURL
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// 其实这就是一个GET请求
NSURL *url = [NSURLURLWithString:@"http: ......"];
NSData *data = [NSDatadataWithContentsOfURL:url];
NSLog(@"%d", data.length);
});
// 2.NSURLConnection
NSURL *url = [NSURLURLWithString:@"http: ......"];
NSURLRequest *request = [NSURLRequestrequestWithURL:url];
[NSURLConnectionsendAsynchronousRequest:request queue:[NSOperationQueuemainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSLog(@"%d", data.length);
}];