作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用解析。我有一个 PFFILE,我正在使用查询检索它。我需要保存它,我发现你通常使用saveEventualy
。但它不支持 PFFile。那么如何将 PFFile 转换为 PFObject 呢?否则如何保存图像以供离线使用?这是我到目前为止的代码:
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self GetImage];
}
- (void)enteredForeground:(NSNotification*) not
{
[self GetImage];
}
-(void)GetImage
{
PFQuery *query = [PFQuery queryWithClassName:@"Image"];
[query getObjectInBackgroundWithId:@"4tmub1uxVd" block:^(PFObject *imageObject, NSError >*error)
{
if (imageObject) {
PFFile *imageFile = imageObject[@"image"];
[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
if (data) {
UIImage *image = [UIImage imageWithData:data];
if (image) {
self.imageview.image = image;
}
} else {
NSLog(@"Error fetching image file: %@", error);
}
}];
} else {
NSLog(@"Error fetching object: %@", error);
}
}];
}
最佳答案
关于ios - 如何将 PFFile 转换为 PFObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23590807/
我是一名优秀的程序员,十分优秀!