I\'m trying to remove the separator for one UITableViewCell. I did the following:
UITableViewCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellFo
Just add following to the cell you don't want separator (swift 3) :
override func awakeFromNib() { super.awakeFromNib() // remove separator self.separatorInset = UIEdgeInsetsMake(0, 1000, 0, 0) }