我想在 Parse Server 中保存一些图像,并将其拉入我的 iOS 应用程序。知道怎么做吗?
有可用的教程吗?我已经尝试搜索但无法找到任何..
在通常使用 UIImageView 的地方使用 PFImageView。给它你希望显示的图像的 PFFile,然后调用 loadInBackground。
PFFile *imageFile = [pfObject objectForKey:@"image"];
PFImageView *imageView = [[PFImageView alloc] init];
imageView.file = imageFile;
[imageView loadInBackground];
查看本教程https://www.parse.com/tutorials/saving-images我相信这将帮助您走上正确的轨道:)。