从WCF服务IOS下载图像和视频

时间:2013-12-31 00:41:13

标签: ios objective-c wcf uiimageview uiimage

我是网络服务的新手,我搜索了它,但我找不到任何有关它的文档。有没有办法从 WCF服务下载图像视频并保存我的应用程序的文档文件?或者我是否需要使用不同的下载方式?

感谢您的建议和兴趣。

1 个答案:

答案 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]