我有一个UITableView
,NSMutableArray
有很多班级名称(1A,1B,2A ......),我想在行中的文字前显示图像。如果单元格中的文本是否为1A,如何显示1A图像?任何想法或代码示例?
非常感谢,因为在这个世界上我很陌生:D
答案 0 :(得分:0)
http://www.appcoda.com/customize-table-view-cells-for-uitableview/
如果是,上面的链接提供了如何制作自己的tableviewcells的教程,当制作这样的单元格时,如果你想要一个nsstring,uiimage或每个tableviewcell中显示的任何内容,你可以自己提供。
答案 1 :(得分: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]];
}
我希望这会有所帮助,它对我有用。 :)干杯