TextRow.defaultCellUpdate = { cell, row in
if !row.isValid {
cell.titleLabel?.textColor = .red
}
cell.detailTextLabel.textColor = Background_Color
}
This is my code, i can change ActionSheetRow detailTextLabel color ,but i can not change TextRow color
For Rows with Inputs, you need to access the UITextField
ie.
TextRow.defaultCellUpdate = { cell, _ in
cell.textField.textColor = .red
}
@KieSun Please ask this kind of general Eureka question on stackoverflow as contribution guidelines indicates so all Eureka community can help.
Thanks
Most helpful comment
For
Rowswith Inputs, you need to access theUITextFieldie.