UITableViewCell分隔符不起作用

时间:2016-10-27 06:36:00

标签: ios swift uitableview

我在storyboard中将separator insets设置为0但是当我运行代码时,inset不是0。这是iOS的错误吗?这是否有任何解决方法? (我是iOS开发的新手)

1 个答案:

答案 0 :(得分:2)

willDisplayCell UITableViewDelegate函数添加到您的代码中并设置您的单元格的separatorInsetlayoutMargins

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
      cell.separatorInset = UIEdgeInsetsZero
      cell.layoutMargins = UIEdgeInsetsZero
}