Is there a way to remove the separator line from a UITableView? Is there a way to remove the separator line from a UITableView? objective-c objective-c

Is there a way to remove the separator line from a UITableView?


You can do this with the UITableView property separatorStyle. Make sure the property is set to UITableViewCellSeparatorStyleNone and you're set.

Objective-C

self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

In Swift (prior to 3)

tableView.separatorStyle = .None

In Swift 3/4/5

tableView.separatorStyle = .none


You can do this in the storyboard / xib editor as well. Just set Seperator to none.

enter image description here


- (void)viewDidLoad {    [super viewDidLoad];    [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];}