如何更改Eureka表格单元格的边框颜色?我设法使密码字段的背景颜色透明,但希望对边框执行相同的操作。
这是我的单元格代码:
<<< ButtonRow() { (row: ButtonRow) -> Void in
row.title = "Forgot your password?"
}.onCellSelection({ (cell, row) in
self.performSegueWithIdentifier("resetPassword", sender: nil)
}).cellSetup { cell, row in
cell.backgroundColor = UIColor(white: 1, alpha: 0.0)
// How can I get this to work?
cell.contentView.layer.borderColor = UIColor(white: 1, alpha: 0.0).CGColor
}
答案 0 :(得分:1)
我们正在寻找的是我认为的tableView分隔符样式。
self.tableView.separatorStyle = .none