There is no built-in support for this.
You can disable cells in the table view with:
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
And then draw the dividing lines in your UITableViewCell subclasses that you use for the rows.
source share