对不起,如果这是一个愚蠢的问题~
这是我在 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;
}
名称列表确实弹出了,但旁边没有任何图标。