所以我正在为我的应用程序使用新的Parse Config。简单的部分是NSString
的安装,但现在我正在处理ImageView
。有人可以帮我弄清楚如何执行这个?
以下是我要求NSString
:
[PFConfig getConfigInBackgroundWithBlock:^(PFConfig *config, NSError *error) { NSNumber *number = config[@"numberOne"]; textLabel.text = [number stringValue]; }];
现在我创建了一个名为mainImage
的图像,我需要将其设置为来自Parse服务器的mainImageFile
。这就是我陷入困境的地方:
[PFConfig getConfigInBackgroundWithBlock:^(PFConfig *config, NSError *error) {
PFFile *pfFileMainImage = config[@"mainImageFile"];
//
//
}];
如果这有帮助..这就是我在tableView
中设置Parse的图像:
PFFile * thumbnail = [object objectForKey:@“imageFile”]; PFImageView thumbnailImageView =(PFImageView )[cell viewWithTag:100]; thumbnailImageView.image = [UIImage imageNamed:@ “附加照片placeholder.png”]; thumbnailImageView.file = 缩略图; [thumbnailImageView loadInBackground];
谢谢!