UITableViewCell with cell.backgroundView , and self.webSiteTableView.separatorStyle = UITableViewCellSeparatorStyleNone , when i get into editingStyle , the line appeared under the DELETE button with red background . no line between cells , only part of it showed under the button when i get in to editingstyle ..
i tried almost everything:
[self.webSiteTableView setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 0)];
self.webSiteTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
[[UITableView appearance]setSeparatorInset:UIEdgeInsetsZero];
self.webSiteTableView.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor clearColor];
cell.backgroundColor = [UIColor clearColor];
[cell setBackgroundColor:[UIColor clearColor]];
it just didn't work ... the line still there ... is there any way to make it disappear ? thx !
UPDATE: i tried self.webSiteTableView.backgroundColor = [UIColor redColor]; turn out separator line did disappear .. the problem is the height of the DELETE button smaller than height of the cell ... how can i fix it ? how can i make button bigger ? ..