我在重现 UITableViewController 中的视觉故障时遇到问题。实际上是 SensibleTableView 组件中的 SCTableViewController。
所以我在 -viewDidLoad: 中构造了一个静态分组的 TableView。
- (void)viewDidLoad
{
[super viewDidLoad];
SCTableViewSection *sec = [SCTableViewSection sectionWithHeaderTitle:@"hdas"];
SCLabelCell *c1 = [SCLabelCell cellWithText:@"dsan"];
[sec addCell:c1];
[[self tableViewModel] addSection:sec];
}
我看到的是标签右边缘有一个奇怪的细灰色边框。(标有红色三角)
我在哪里可以删除这个栏?为什么它甚至会出现?
我尝试设置背景颜色、图层边框、图层阴影、textShadow 等。