如何将图像添加到buttonrow Swift Eureka

时间:2016-05-09 00:46:12

标签: swift2 eureka-forms

我是Eureka表单框架(Swift 2)的新手,我试图设置单元格的背景颜色,并添加左图标,如下图所示。

enter image description here

我的实际代码是:

<<< ButtonRow() { (row: ButtonRow) -> Void in
                row.title = "Access"

                }  .onCellSelection({ (cell, row) in
                    self.showAlert()
                })
  

有任何线索吗?

1 个答案:

答案 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”。