UITableViewCell无法删除insets

时间:2015-08-23 21:03:00

标签: ios uitableview ios8 separator

我已经找到了关于移除边框左侧插图的每一个解决方案。这是我申请的代码,苹果文档说这是我应该应用它的属性。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("voicemailCell", forIndexPath: indexPath) as! UITableViewCell

    // Configure the cell...
    cell.separatorInset = UIEdgeInsetsZero
    return cell
}

我不知道为什么这不起作用我唯一的理由是我不应该将它应用到那里的单元格,但肯定let cell引用了单元格。

0 个答案:

没有答案