当前位置: 代码迷 >> 综合 >> Tableview 默认选中第一行以及选中背景自定义
  详细解决方案

Tableview 默认选中第一行以及选中背景自定义

热度:45   发布时间:2023-12-22 18:58:57.0
//默认选中第一行
NSIndexPath *firstPath=[NSIndexPath indexPathForRow:0 inSection:0];
[_firstTableView selectRowAtIndexPath:firstPath animated:YES scrollPosition:UITableViewScrollPositionTop];

//选中背景自定义

cell.selectedBackgroundView=[[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"cell_selected_bg"]]autorelease];

  相关解决方案