Ish
Ish

Reputation: 338

Custom keyboard layout in Cocoa Touch?

I am currently working on a BrainFuck interpreter for the iPhone. Seeing as BrainFuck only has eight commands, I want to create a custom nine-button (eight commands + backspace) keypad that will be showed instead of the standard iPhone keyboard. Is there any easy way of doing this?

Thanks, amit ron-

Upvotes: 2

Views: 1806

Answers (2)

Cajunluke
Cajunluke

Reputation: 3113

As far as I can tell, there's no "officially authorized" way to do this. The thread here is a good discussion of a variety of ways it can be done.

Also, the iPhone SDK agreement specifically forbids interpreters. I don't know how strictly that rule is kept, so be aware that your app may get rejected.

Upvotes: 2

mrueg
mrueg

Reputation: 8225

There is currently no easy way to do this elegantly, i.e. there are definitely no custom keyboards supported, only the ones supplied by the system. (Shouldn't be too hard to implement your own for nine buttons though).

If you look carefully at some galleries of the new iPad, you can see that Numbers for iPad has a custom keyboard. I think this makes it quite likely that doing something like this will probably become easier once the next iPhone OS is out.

Upvotes: 0

Related Questions