我正在使用 Parse.com,并且在 TableView 内有一个 ViewController ...
TableView 的单元格是个性化的,包含在带有 PFImageView 类的 ImageView 中。
我什么时候运行一切正常,定期给我看照片,但 Xcode 5 给我显示这个错误消息
Interface Builder 文件中的 PFImageView 未知类。
我怎么会收到这个错误?我在哪里做错了
下面我在表格视图中展示 PFImageView 的实现。
PS 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;
}