-
-
Notifications
You must be signed in to change notification settings - Fork 142
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
Dismiss keyboard, no way to get it back #171
Comments
Hello, Does it also happen on the demo app? Turning on / changing / turning off? Does it also happen on the simulator? Because I don't have a real iPad to debug the issue. |
Replicated on the demo app on the simulator, just run it in an ipad sim |
When does it happen? |
Anytime the lock screen comes up, either to enable to the passcode or to unlock the screen. its easy to replicate -
|
Thank you! I'll try to look into it when I get home. Any particular iOS version it happens on? |
I;m guessing it would happen on all iPad version that have the dismiss keyboard button. In your MakeDigitField method, you have "field.userInteractionEnabled = NO;" which is probably not allowing the keyboard to come up when you tap on it. Also, probably should open a different issue, could you modify #define LTHMainWindow [UIApplication sharedApplication].windows[0] to #define LTHMainWindow [UIApplication sharedApplication].windows[ [UIApplication sharedApplication].windows.count - 1] ? |
I don't know the code by heart, but you might be right about the keyboard. Even though your solution makes more sense, I'm not 100% confident about making a change there. There's a comment next to it, and an issue marked with Would Nonetheless, I'll also look into the change, and test it out, but it would help tremendously if you could also have a look, especially since you're using more than one window, as far as I understood. |
I think as you always want the topmost window, the suggested change would be safe. I didn't have luck with undef. It would be awesome if it could be incorporated as i don't want to modify a local copy of the code. |
The Also, using |
Fixed in 3.8.4. |
On an iPad, if you tap on the close keyboard button at the bottom right.
Even if you tap on the digits, there is no way for the keyboard to come back up
The text was updated successfully, but these errors were encountered: