如何摆脱Eureka ImageRow中的右边填充?

时间:2017-03-16 02:55:17

标签: swift uitableview swift2 eureka-forms

我试图摆脱Eureka中图像行中的(右)间距(不是他们的最新版本,而是之前的版本)。

以下是上传后的图片: enter image description here

这是我的代码:

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()
                })
   }

然而,我只是无法摆脱图像的空间。我该怎么做才能摆脱它?如何使图像跨越框架的整个宽度?

0 个答案:

没有答案