How do you disable selecting only a single cell in a UITableView? I have several, and I only want the last to be disabled.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = ... cell.selectionStyle = UITableViewCellSelectionStyleNone; }