I know I can change the UITableView property separatorStyle to UITableViewCellSeparatorStyleNone or UITableViewCellSeparatorStyleSingleLine to change all the cells in the TableView one way or the other.
I’m interested having some cells with a SingleLine Separator and some cells without. Is this possible?
Your best bet is probably to set the table’s
separatorStyletoUITableViewCellSeparatorStyleNoneand manually adding/drawing a line (perhaps intableView:cellForRowAtIndexPath:) when you want it.