Keyboard issues
soffes opened this issue · 4 comments
I've noticed when DCIntrospect is enabled, the keyboard will not animate in correctly. Also sometimes settings becomeFirstResponder
doesn't work or does work and the keyboard is not visible.
Not a huge deal, just noticing.
I think this is because the keyboard is already "up" all the time even though it is invisible (inputTextView.inputView is an empty view). So the system doesn't animate it up, similar to how when you switch from a text field directly to another in other apps the keyboard stays up in between.
Not sure why becomeFirstResponder
isn't working though, I'll try to reproduce it to fix that.
Seeing this too - even if we're not enabling DCIntrospect.
It would be really nice if there was a way to include DCIntrospect in code but have it not run at all. We wrapped the code with
#if USE_DCINTROSPECT == 1
[[DCIntrospect sharedIntrospector] start];
#endif
And DCIntrospect was still firing with the constant at 0.
Actually I'll file this as a new bug.
I've also noticed some 'glitches' with keyboard animations, though becomeFirstResponder is working fine. Keyboard does not animate in but just appears, and when hiding the keyboard it starts to animate out but then flashes briefly in the upper right corner of the screen.