我试图摆脱Eureka中图像行中的(右)间距(不是他们的最新版本,而是之前的版本)。
这是我的代码:
form = Section()
<<< ImageRow("Picture") {
$0.title = "Select a picture"
$0.cellSetup({ (cell, row) in
cell.height = { 220 }
cell.backgroundColor = UIColor.groupTableViewBackgroundColor()
})
$0.cellUpdate({ (cell, row) in
cell.accessoryView?.frame = CGRectMake(0, 0, cell.frame.width, cell.frame.height)
cell.textLabel?.textColor = UIColor.lightGrayColor()
})
}
然而,我只是无法摆脱图像的空间。我该怎么做才能摆脱它?如何使图像跨越框架的整个宽度?