使用以下代码就可以
// 解决iOS8的cell中得separatorInset受layoutMargins影响的bug
- (UIEdgeInsets)layoutMargins {
return UIEdgeInsetsZero;
}
//然后
1.cell.separatorInset = UIEdgeInsetsZero;
or
2.tableView.separatorInset = UIEdgeInsetsZero;
其中 1 的权重更高
使用以下代码就可以
// 解决iOS8的cell中得separatorInset受layoutMargins影响的bug
- (UIEdgeInsets)layoutMargins {
return UIEdgeInsetsZero;
}
//然后
1.cell.separatorInset = UIEdgeInsetsZero;
or
2.tableView.separatorInset = UIEdgeInsetsZero;
其中 1 的权重更高
本文标题:解决系统自带 tableViewCell 分割线不能全屏
本文链接:https://www.haomeiwen.com/subject/hujpsttx.html
网友评论