ContactInfo *data = [self.contacts objectAtIndex:[indexPath row]];
cell.textLabel.text = data.name;
cell.detailTextLabel.text = data.designation;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
NSString *filePath = [[NSBundle mainBundle] pathForResource:data.image ofType:@"png"];
NSLog(@"%@",filePath);
UIImage *image1 = [UIImage imageWithContentsOfFile:filePath];
cell.imageView.image = image1;
return cell;
ここで私は右のセルデータと詳細テキストラベルを取得しますが、画像ビューは表示されません。別の画像が必要です。いずれかがアドバイスを受けることができる場合。SQLデータベースからテーブルビューセルに画像をロード
NSLogの出力は? – Geoffroy