I\'m trying to remove the separator for one UITableViewCell. I did the following:
UITableViewCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellFo
You can just visually hide separator through separatorInset property:
separatorInset
tableViewCell.separatorInset = UIEdgeInsets(top: 0, left: 10000, bottom: 0, right: 0)