selection - How can I make only one UITableView cell can be highlighted when selected? -


If I choose, I want to highlight only one cell.

I can not use UITableViewCellSelectionStyleNone because I want to select other cells and can be highlighted in editing mode.

Every comment will be appreciated.

Thanks

I came to know how to do this

Just use the next two lines in the loaded load and the last cell is too large (the whole is enough to cover) the UIButton. self.tableView.allowsSelection = No; Self.tableView.allowsSelectionDuringEditing = Yes;

Comments