首页 > 解决方案 > 如何删除 Eureka buttonrow 中的行分隔符?

问题描述

我需要删除 ButtonRow 中的分隔线。我只想删除这一行的分隔符,所以不能使用“tableView.separatorStyle = UITableViewCellSeparatorStyle.none”。

我需要删除忘记密码行的行。

截屏:

截屏

form +++ Section("")

        <<< ButtonRow("Forgot Password") { (row: ButtonRow) in
            row.title = row.tag
            }
            .onCellSelection { _, _ in
                let vc = ForgotPasswordVC()
                self.navigationController?.pushViewController(vc, animated: true)

            }.cellSetup { cell, row in
                cell.backgroundColor = UIColor(white: 1, alpha: 0.0)

    }

标签: iosswifttablevieweureka-forms

解决方案


推荐阅读