让 uitableviewcell 的分割线左对齐,编程方式


图片描述

尝试设置 cell.separatorInset = UIEdgeInsetsZero 等无效,求解决办法。

ios swift objective-c

单体突入大气层 9 years, 10 months ago

 if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
    [self.tableView setSeparatorInset: UIEdgeInsetsZero];
}
if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
    [self.tableView setLayoutMargins: UIEdgeInsetsZero];
}

Fifth answered 9 years, 10 months ago

Your Answer