1

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

有可用的教程吗?我已经尝试搜索但无法找到任何..

4

2 回答 2

2

在通常使用 UIImageView 的地方使用 PFImageView。给它你希望显示的图像的 PFFile,然后调用 loadInBackground。

PFFile *imageFile = [pfObject objectForKey:@"image"];
PFImageView *imageView = [[PFImageView alloc] init];
imageView.file = imageFile;
[imageView loadInBackground];
于 2013-06-13T16:58:11.867 回答
0

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

于 2013-06-13T16:10:28.583 回答