我已经找到了关于移除边框左侧插图的每一个解决方案。这是我申请的代码,苹果文档说这是我应该应用它的属性。
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
引用了单元格。