如何从iPhone上的Web服务获取图像?

时间:2010-09-02 06:50:55

标签: iphone objective-c web-services

如何通过iPhone上的网络服务获取图像?

2 个答案:

答案 0 :(得分:0)

您可以通过base64对图像进行编码,然后将base64字符串嵌入到webservice有效负载中,当iPhone收到消息解码base64字符串到NSData时,您就可以显示它了。

答案 1 :(得分:0)

UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:webPath]]];