标签:cti xxxx 数据 唤醒 解决方案 null 构造方法 学习 处理
[NSURLSessionDownloadTask [NSURLSessionDownloadTask *task = [session downloadTaskWithURL:[NSURL URLWithString:@"http://192.168.1.17/xxxx.zip"] completionHandler:^(NSURL * _Nullable location, NSURLResponse * _Nullable response, NSError * _Nullable error) { // 获取沙盒的caches路径 NSString *path = [[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)lastObject]stringByAppendingPathComponent:@"xxx.dmg"]; // 生成URL路径 NSURL *url = [NSURL fileURLWithPath:path]; // 将文件保存到指定文件目录下 [[NSFileManager defaultManager]moveItemAtURL:location toURL: url error:nil]; }] resume];
NSURLSession与NSURLConnection区别
标签:cti xxxx 数据 唤醒 解决方案 null 构造方法 学习 处理
原文地址:http://www.cnblogs.com/beckwang0912/p/7196350.html