1

我正在使用适用于 iOS 的最新 Parse SDK 1.7.1,并使用可可豆荚安装它。出于某种原因,类 ' PFImageView'(如docs中所示)未包含在框架的标头中。

当我想像本例中那样使用该类时,我意识到了这一点:

- (UIImageView *)iconView {
  PFImageView *view = [[PFImageView alloc] initWithImage:kPlaceholderImage];
  view.file = self.iconFile;
  [view loadInBackground];
  return [view autorelease];
}

有谁知道PFImageView课堂上发生了什么或者我只是做错了什么?我对 Parse SDK 很陌生。

任何帮助表示赞赏,谢谢!

4

1 回答 1

0

[添加来自@soulshined 的评论作为答案]

将以下内容添加到 Podfile 并运行pod install

pod 'ParseUI'

不要忘记import <ParseUI/ParseUI.h>

于 2015-11-19T06:34:26.387 回答