Select one row in each section of UITableView ios?

前端 未结 3 698
慢半拍i
慢半拍i 2021-01-15 02:50

Scenario:

I have made 2 sections in one UITableView and the user needs to select a row in each section as shown in the screenshot below.

Expected Outcome:

3条回答
  •  醉酒成梦
    2021-01-15 03:26

    You can enable the multiple selection in the tableview:

    self.tableView.allowsMultipleSelection = YES;
    

提交回复
热议问题