Using UITextField Inside Keyboard Application Extension

I added a text box (keyboardTextField) on top of my custom keyboard. I can select it and enter text (using my own custom keyboard). But I could not select the input view of the main application back. This line of code

[keyboardTextField resignFirstResponder]; 

not working properly. If anyone has a workaround or any ideas, I need your help.

+3
ios8 custom-keyboard ios-app-extension ios8-extension
source share
1 answer

I fixed this by adding a button that switches user input from UILabel (in my case) to UITextField (normal - iOS) in the posts fe

I check BOOL to see where to enter a custom character.

0
source share

All Articles