EurekaSwiftValidatorComponents
EurekaSwiftValidatorComponents copied to clipboard
the value in a text field is alway show old value
I've tried to set value in row when I create form but the value is still shown overlay textfield when I edit it.
Platform: iOS 9.3
it's a detailTextLabel
overlay on UITextField
form is function
public override func update(){
super.update()
textLabel?.text = row.title
if !valid && autoValidation {
textLabel?.textColor = row.isDisabled ? .grayColor() : errorColor
} else {
textLabel?.textColor = row.isDisabled ? .grayColor() : .blackColor()
}
detailTextLabel?.text = row.displayValueFor?(row.value)
}
Did you resolve this issue?
Hello, will check it and let you know...
Cheers, Dem