如何将保存的图像从Parse.com拉到我的应用程序中

时间:2013-06-13 15:13:15

标签: ios parse-platform

我想在Parse Server中保存一些图像,并希望将其下载到我的iOS应用程序中。知道怎么做吗?

有没有可用的教程?我试过搜索但找不到任何...

2 个答案:

答案 0 :(得分:2)

使用PFImageView,您通常使用UIImageView。为你想要显示的图像提供PFFile,然后调用loadInBackground。

PFFile *imageFile = [pfObject objectForKey:@"image"];
PFImageView *imageView = [[PFImageView alloc] init];
imageView.file = imageFile;
[imageView loadInBackground];

答案 1 :(得分:0)

查看本教程https://www.parse.com/tutorials/saving-images我相信这将有助于您走上正确的道路:)。