Poldon
Poldon

Reputation: 365

Can I add a key to the system keyboard in iOS?

I need to add a custom key to the iOS system keyboard without requiring a jailbreak. For example, when I go into any app, I want my custom key to show up and then have it launch a view from my app.

I've seen tons of examples that do things like this from a custom UITextView, but nothing that modifies the keyboard for all apps.

Upvotes: 3

Views: 826

Answers (3)

Tushar Chutani
Tushar Chutani

Reputation: 1570

You can't but how about adding a UIToolBar on top of your keyboard?

Upvotes: 3

sidyll
sidyll

Reputation: 59297

You can't modify the system keyboard.

Upvotes: 2

Daniel A. White
Daniel A. White

Reputation: 190942

No. Apple has iOS pretty locked down. Your app is pretty much in its own sandbox with a few outlets to the rest of the system.

You also can't create a custom keyboard like Android.

Upvotes: 3

Related Questions