场景:一个弹出层,包含一个Tableview,每一行为一个选择条件,且只能选择一个。选中后文体有颜色变化,后面还会有对勾。选择另一个后,前一个恢复成普通状态。

IOS开发之tableview只选中一行

示例代码:

 

-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath {int newRow =[indexPath row];int oldRow =[lastIndexPath row];if(newRow != oldRow){UITableViewCell*newCell =[tableView cellForRowAtIndexPath:
                                                                indexPath];
        newCell.accessoryType =UITableViewCellAccessoryCheckmark;UITableViewCell*oldCell =[tableView cellForRowAtIndexPath:
                                                                lastIndexPath];
        oldCell.accessoryType =UITableViewCellAccessoryNone;

        lastIndexPath = indexPath;}[tableView deselectRowAtIndexPath:indexPath animated:YES];}

注意: lastIndexPath为私有变量,页面第一次加载为nil,需追加判断。

 

相关文章:

  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-08
  • 2022-12-23
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案