我继承了UITableViewController,我希望它卖出如下输出
名称图片
Name2 Image2
Name3 Image3
这些是表格中不同的单元格,我该怎么做才能实现这样的东西,任何想法?
答案 0 :(得分:1)
在你的方法中:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
插入:
cell.imageView.image = [UIImage imageNamed:@"icon.png"];