将图像传输到 iphone http

发布于 2024-08-04 01:02:54 字数 186 浏览 11 评论 0原文

我已经设置了与服务器的连接,现在我想将图像传输到 iPhone。最好的方法是什么?我检查了此处,但没有找到传输任何内容的方法除了 XML 之外。我需要图像。谢谢你!

I have setup a connection to a server and now I want to transfer images to the iPhone. What's the best way to do this? I checked here and I don't see a way to transfer anything other than xml. I need images. Thank You!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难愈 2024-08-11 01:02:54

以下是将图像从网络传输到 iPhone 的示例:

id path = @"http://a1.twimg.com/profile_images/65821548/summer2007_normal.jpg";
            NSURL *url = [NSURL URLWithString:path];
            NSData *data = [NSData dataWithContentsOfURL:url];
            UIImage *img = [[UIImage alloc] initWithData:data ];

Here's an example of transfering images from the web to the iphone:

id path = @"http://a1.twimg.com/profile_images/65821548/summer2007_normal.jpg";
            NSURL *url = [NSURL URLWithString:path];
            NSData *data = [NSData dataWithContentsOfURL:url];
            UIImage *img = [[UIImage alloc] initWithData:data ];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文