Syed Sadrul Ullah Sahad
Syed Sadrul Ullah Sahad

Reputation: 1312

Open Custom Keyboard Extension when specific UITextField become first responder

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

Answers (1)

Baig
Baig

Reputation: 5005

Assign the customkeyboardView as an inputView of the UITextField as indicated below

textField.inputView = customkeyboardView

Upvotes: 0

Related Questions