0

我有一个UITableView带有NSMutableArray很多类名称(1A、1B、2A ...)的 a,我想在行中的文本之前显示图像。如果单元格中的文本 = 到 1A,如何显示 1A 图像?任何想法或代码示例?

非常感谢,因为我在这个世界上很新:D

4

2 回答 2

0

这是如何做到的:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

  static NSString *cellIdentifier = @"Cell";

  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:Identifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:Identifier];
}

//This piece of code will allow you to display your images beside your text in the tableView

cell.imageView.image = [UIImage imageNamed:[self.classNameArray objectAtIndex:indexPath.row]];

}

我希望这会有所帮助,它对我有用。:) 干杯

于 2014-11-15T05:02:37.733 回答
0

你是这个意思吗?

http://www.appcoda.com/customize-table-view-cells-for-uitableview/

如果是,上面的链接提供了有关如何制作自己的 tableviewcells 的教程,并且在制作这样的单元格时,如果您想要一个 nsstring、uiimage 或每个 tableviewcell 中显示的任何内容,您可以自己提供。

于 2012-09-10T19:30:16.830 回答