Reputation: 1312
Is it possible to open only my custom keyboard in container app when a textfield in the container app becomes first responder? And how do i detect if system keyboard appeared instead of custom keyboard?
Upvotes: 0
Views: 241
Reputation: 5005
Assign the customkeyboardView as an inputView of the UITextField as indicated below
textField.inputView = customkeyboardView
Upvotes: 0