StackOverflower
StackOverflower

Reputation: 5761

How to show word suggestion bar on a ios keyboard extension?

I'm implementing a custom keyboard and I need to show the suggestion bar (the one that shows words suggestions as you type).

Do I have to implement it myself or there is any mechanism to show a built-in one?

Upvotes: 0

Views: 707

Answers (1)

veducm
veducm

Reputation: 5953

Unfortunately, QuickType, which is the feature that shows suggested words above iOS keyboards, is available only on standard keyboards. So it cannot be shown in your custom keyboard extension.

Upvotes: 1

Related Questions