问题描述
解决方案
要加些手段才能使分割线左靠
//分割线靠左
if ([self.tableView respondsToSelector:@selector(setLayoutManager:)]) {
[self.tableView setLayoutMargins:UIEdgeInsetsZero];
}
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
}
//解决分割线右移15像素问题,步骤2
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{//UIEdgeInsetsMake(20, 0, 0, 0)
if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
[cell setSeparatorInset:UIEdgeInsetsZero];
}//tableView.separatorColor = [UIColor colorWithHex:@"eeeeee" alpha:1.0];
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
}
解决方案二:
顶顶顶滴滴答答滴滴答答滴滴答答滴滴答答
解决方案三:
很明显,是个tableview。上面是个导航控制器。
解决方案四:
可以使用静态tableviewController
解决方案六:
最简单的static cell 的tableview,
时间: 2024-09-17 04:18:28