I have to build an app that will use the Japanese handwriting mazec business keyboard. This keyboard has 2 seperate modes:
1/ kanji recognizer mode that will appear mostly as the native Chinese handwriting keyboard and recognize user's handwriting and translate to kanji character
2/ image mode that will provide a drawing pad so what user draw will be capture as an image
However, my client wants to use those 2 modes at once, i.e. user can write on the kanji recognizer, and can choose to export what he wrote as image also.
I have searched through Apple documentation and I think there is no way to access the keyboard input view directly to capture what user write.
So I'm thinking about a possible work-around that will track user gesture on the keyboard and draw it in another view programmatically, and that view can be exported as image later. But I'm not sure is there any way to track the pan gesture on the keyboard view.