-
Notifications
You must be signed in to change notification settings - Fork 171
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
broken in iOS7: multiplies tokens while switching to textView #61
Comments
Yup, I'm seeing it. Dunno why yet. |
UITextView and UITextField changed in iOS7. I've found (in my other project), they can send more messages to delegate comparing with iOS6 and earlier. |
I agree, for some reason the text isn't tokenized when the field loses focus, as it should. |
More fun, related with issue:
Instead of step 2 you can pop current VC (go back with navigation bar). In this case keyboard will be visible in that previous VC. |
One problem is here:
After losing focus -[TITokenField didEndEditing] is called. But at some point -[TITokenField addToken:] being executed. It runs [self becomeFirstResponder] and cause some kind of loop. |
Great stuff, this is all really helpful. Thanks. |
fix for #61. No reason to shift focus to tokenField
Steps to reproduce:
The text was updated successfully, but these errors were encountered: