我正在使用Parse.com,我在TableView中有一个ViewController ......
TableView的单元格是个性化的,包含一个带有PFImageView类的ImageView。
我什么时候开始运行,定期向我展示照片,但Xcode 5会向我显示此错误信息
Interface Builder文件中的PFImageView Unknown类。
为什么我会收到此错误?我在哪里做错了
下面我将在表格视图中显示PFImageView的实现。
P.S。 PFImageView和'也被添加到CustomTableViewCell.h的@属性
-(FFCellFindUser *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CellFindUser";
FFCellFindUser *cell = [self.FFTableViewFindUser dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
cell = [[FFCellFindUser alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
PFObject *TempObject = [self.FFTotalUser objectAtIndex:indexPath.row];
cell.FFLabelCell_NomeCognome.text = [TempObject objectForKey:FF_USER_NOMECOGNOME];
PFFile *imageFile = [TempObject objectForKey:FF_USER_FOTOPROFILO];
[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
cell.FFIMGCell_FotoProfilo.image =[UIImage imageWithData:data]; }];
return cell;
}
答案 0 :(得分:2)
似乎在PFTableViewCell中更改自定义UITableViewCell单元的类已经解决了问题......这样,编译器已经识别出PFImageView。
答案 1 :(得分:0)
PFImage调用而不是使用getData。
假设您从我的评论中正确加载了您的单元格。
http://blog.parse.com/2012/07/11/loading-remote-images-stored-on-parse/