我在storyboard中将separator insets设置为0但是当我运行代码时,inset不是0。这是iOS的错误吗?这是否有任何解决方法? (我是iOS开发的新手)
答案 0 :(得分:2)
将willDisplayCell
UITableViewDelegate
函数添加到您的代码中并设置您的单元格的separatorInset
和layoutMargins
:
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
cell.separatorInset = UIEdgeInsetsZero
cell.layoutMargins = UIEdgeInsetsZero
}