讲解iOS开发中UITableView列表设计的基本要点

2020-01-14 19:26:15于海丽

在ViewController的ViewDidLoad方法中添加图片的for循环中为数组添加值

复制代码
NSMutableArray *subtitle= [NSMutableArray array];
     
    for(NSInteger index = 0;index<[table.textLabel_MArray count];index++){
         
        UIImage *image      = [UIImage imageNamed:@"2"];
         
        NSString *detail    = [NSString stringWithFormat:@"detail text %d",index+1];
         
        [images addObject:image];
         
        [subtitle addObject:detail];
    }
table.subtitle_MArray   = [[NSMutableArray alloc] initWithArray:subtitle];
并在CellForRowAtIndexPath方法初始化时将
复制代码
UITableViewCellStyleDefault改变成其他三种样式,并添加代码

 

// 设置小标题
   cell.detailTextLabel.text   = [_subtitle_MArray objectAtIndex:indexPath.row];


效果图如下:

 

讲解iOS开发中UITableView列表设计的基本要点讲解iOS开发中UITableView列表设计的基本要点