在一个类的所有列中,有两列存储图像。column1 和 column2 存储图像。
现在,我想要实现的目标是从这些列中的任何一个获取图像。即获取除第1列之外的所有列或获取除第2列之外的所有列。这样,避免下载其他无用的图像列数据,从而减少网络使用。
这是我尝试过的代码。我无法找到它是否有可能实现这一目标。
PFQuery *query=[PFQuery queryWithClassName:@"MyUsers"];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
for(NSDictionary *dic in objects){
//I want either of image in column "column1" & "column2"
PFFile *file=[dic objectForKey:@"column1"];
PFFile *file2=[dic objectForKey:@"column2"];
self.imgV.image=[UIImage imageWithData:[file getData]];
}
}];