我是网络服务的新手,我搜索了它,但我找不到任何有关它的文档。有没有办法从 WCF服务下载图像和视频并保存我的应用程序的文档文件?或者我是否需要使用不同的下载方式?
感谢您的建议和兴趣。
答案 0 :(得分:0)
尝试使用AFNetWorking:https://github.com/AFNetworking/AFNetworking
这是我从WCF下载文件的示例:
NSMutableURLRequest *reqeust = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:{url}]];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:reqeust];
operation.outputStream = [NSOutputStream outputStreamToFileAtPath:{path_on_disk} append:NO];
[operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) {
//Download progress
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
//Download failed
}];
[operation start]