swift tableview how to select all rows

前端 未结 3 1769
刺人心
刺人心 2021-01-26 19:12

I have Button in tableview I want when I press that button will select all cell rows, how to do that? I tried alot but I got nothing

I\'m so confused how to make the but

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-26 20:09

    var isSelectAll = false; //global variable
    
    isSelectAll = true;//on button action
    self.tableView.reloadData()//on button action
    

    in cellForRowAtIndexPath method

    if(isSelectAll==true)
    {
    cell.backgroundColor = UIColor.blueColor();
    }
    else
    {
    cell.backgroundColor = UIColor.white();
    }
    

提交回复
热议问题