これが愚かな質問であることが判明した場合は申し訳ありません〜
これがUITableViewController.mの私のコードです
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell....
cell.textLabel.text = [[[friendList friends] objectAtIndex:indexPath.row] profileName];
cell.imageView.image = [UIImage imageNamed:@"Zaka.jpg"];
return cell;
}
名前のリストがポップアップしましたが、その横にアイコンがありません。