我是Eureka表单框架(Swift 2)的新手,我试图设置单元格的背景颜色,并添加左图标,如下图所示。
我的实际代码是:
<<< ButtonRow() { (row: ButtonRow) -> Void in
row.title = "Access"
} .onCellSelection({ (cell, row) in
self.showAlert()
})
有任何线索吗?
答案 0 :(得分:4)
这应该适合你:
.cellSetup { cell, row in
cell.backgroundColor = UIColor(red:0.00, green:0.00, blue:0.00, alpha: 1.0)
cell.imageView?.image = UIImage(named: "name_of_image_in_assets")
}
用您想要的UIColor RGB设置替换“0.00”。