Hi
In a business app on IOS I have an interface for editing a post-like object, with what could be a long text and also an image that I show below that text.
I’m using a native TextBox for editing the text, and I want to include that and the image in a group that I want to scroll up and down (using touch events) given that a big portion of the screen is used up by the keyboard.
I realise that the TextBox is above the OpenGL display layer, but it feels like it is intercepting not only the tap events but also the touch events, which means that the group which “contains” the TextBox is not receiving the touch events (it works fine when touching the image below the TextBox)
Any clues how I can solve or work around this ?
DH