0

如何设置本地UIImage toPFFILE`

我没有从解析数据库中获得图像我使用了 uiimagepickercontroller

我已尝试使用此代码,但未在其中设置图像PFImageView

UIImage *img=[UIImage imageNamed:@"Group_icon.png"];
PFFile *file = [PFFile fileWithName:@"Image.jpg"  data:UIImagePNGRepresentation(img)];
[imageUser setFile:file];
[imageUser loadInBackground];

请帮我

4

1 回答 1

0

我遇到过同样的问题。您不能在 PFImageView 中使用 PFFile,直到它被保存到服务器并被获取。可能与缓存的工作方式以及使用 url 作为键有关。简单的解决方案是保存它,然后获取它并将其设置在 imageview 上,但它很慢。更好的解决方案是保留 UIImage,可能在 NSCache 或其他东西中,并使用它直到它被保存到服务器。

于 2015-10-27T16:18:20.963 回答