PFQuery排除特定列

时间:2012-12-29 12:04:17

标签: iphone objective-c ios ipad parse-platform

在类中的所有列中,有两列存储Images。 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]];
    }

}];

1 个答案:

答案 0 :(得分:2)

PFQuery提供的结果不包括实际的PFFile内容,而是指向文件本身的指针。您可以通过调用任何getData方法选择性地下载PFFile。文件下载一次后,它将在本地缓存到磁盘。