I´m having trouble reproducing a visual glitch in a UITableViewController. Actually a SCTableViewController from the SensibleTableView Component.
So I´m constructing a static grouped TableView in -viewDidLoad:.
- (void)viewDidLoad
{
[super viewDidLoad];
SCTableViewSection *sec = [SCTableViewSection sectionWithHeaderTitle:@"hdas"];
SCLabelCell *c1 = [SCLabelCell cellWithText:@"dsan"];
[sec addCell:c1];
[[self tableViewModel] addSection:sec];
}
And what I´m seeing is a weird thin grey border on the right edge of the label. (Marked with red triangle)
Where would I look to remove this bar? Why does it even appear?
I tried setting backgroundColor, layer borders, layer shadows, textShadow etc.
use UILabel.backgroundColor, set label's backgroundColor raise this problem. you can fix this bug by set Layer's backgroundColor by UILabel.layer.backgroundColor.
"Setting background color as clear fixed for me." by Nuthinking. can fix this bug too. But in tableView this may be reduced performance a little.
Setting background color as clear fixed for me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With