I need to remove the separator lines in the ButtonRow. I only want to remove the separator for this row so, I can't use "tableView.separatorStyle = UITableViewCellSeparatorStyle.none".
I need to remove the lines for the Forgot Password row.
Screenshot:
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)
}