-
-
Notifications
You must be signed in to change notification settings - Fork 953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Row value assigned too late, otherwise nil #2
Comments
Merged
This should be fixed now in 1.0.1 |
First I have to say that I am in love with XLForm ! I was able to bypass the issue using a subclass of XLFormViewController: override -(void) savePressed:(UIBarButtonItem *)saveButton Hope that it help! |
@RobertAudi , @gutoperes happy to hear that! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First of all, I'd like to thank you for this wonderful library. Great work 👍
Now about the issue:
Let's say I have a text field cell. Unless the focus moves away from the text field (ie: the keyboard has been dismissed or the user went to the next text field),
[[self.form formRowWithTag:@"title"] value]
returnsnil
regardless of the contents of the text field. That would be wrong if the text field's text is not empty. So consider this scenario:At this point, there is a problem because the value of the text field is
nil
even though it shouldn't be.The text was updated successfully, but these errors were encountered: