微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ios – Swift通用闭包

我正在为静态表视图构建一个库,它工作正常,但我遇到了通用闭包的问题.

到目前为止看起来像这样:

orderForm = Form(tableView: orderTable) { f in
    f.section { s in
        s.footer("Při platbě nejsou účtovány žádné další poplatky.")
        s.cell("Selection")
            .configure { (cell,path) in
                let c = cell as! ProfileSelectionCell
                c.titleLabel?.text = "Způsob platby"
                c.detailLabel?.text = self.paymentType.first
            }
        s.cell("Selection")
            .configure { (cell,path) in
                let c = cell as! ProfileSelectionCell
                c.titleLabel?.text = "Balíček"
                c.detailLabel?.text = "20 kr. za 1000 Kc"
            }.selected { path in

            }
        }
    }

我想将“cell”变量转换为适当的类型,在本例中为ProfileSelectionCell.

以下是单元类的来源:

class Cell {
internal let id: String
internal var configure: ((cell: UITableViewCell,path: NSIndexPath) -> Void)?
internal var selected: ((path: NSIndexPath) -> Void)?

init(id: String) {
    self.id = id
}

func configure(config: ((cell: UITableViewCell,path: NSIndexPath) -> Void)?) -> Self {
    self.configure = config
    return self
}

func selected(selected: (path: NSIndexPath) -> Void) -> Self {
    self.selected = selected
    return self
}}

我的问题是,如果我使配置方法通用,不可能将配置闭包存储到单元格变量,如果我使整个单元格通用,我不能将单元格保存到节类中的数组,依此类推..

这可以解决吗?

解决方法

您可以使Cell类通用,例如

class Cell<T : UITableViewCell> {
}

然后使用T代替每个UITableViewCell.

不幸的是,你也必须在Section和Form类中拥有相同的功能.这适用于具有一种类型单元格的表格,但它不适用于具有多种单元格类型的表格.在这种情况下,你总是需要在某处施放.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐