When a TextEditor
gains keyboard focus on iOS, the onscreen keyboard appears, which is great.
However, it also partially obscures the main component on the screen, potentially hiding the TextEditor
. Is there any way to
- Get a notification when they keyboard appears
- Get the keyboard’s bounds
When I say “any way” I mean cleanly within JUCE. I’m aware I could handle this with native UIKit code, but I’d rather avoid that.