1

我正在使用 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;
}
4

2 回答 2

2

看来改变PFTableViewCell中自定义UITableViewCell单元的类已经解决了这个问题......这样,编译器已经识别出PFImageView。

于 2013-10-18T13:59:18.437 回答
0

PFImage 有一个调用来代替使用 getData。

假设您从我的评论中正确加载了您的单元格。

http://blog.parse.com/2012/07/11/loading-remote-images-stored-on-parse/

于 2013-10-18T02:56:22.520 回答