How can you display a keyboard that has only digits and typical mathematical signs: parenthesis, operators (+,*,/,-,^)
, etc.. I'm looking for something with the same look and feel as the standard keyboard on iOS, that can be moved, undocked, and split. I could probably use buttons in a UIView but it wouldn't feel the same as the usual keyboard.
Asked
Active
Viewed 214 times
0

alecail
- 3,993
- 4
- 33
- 52
-
@MicRO double negatives confuse me. – alecail Mar 25 '13 at 12:56
-
Two "not's" in one sentence makes the logic 'interesting' to decipher – KevinDTimm Mar 25 '13 at 13:12
-
1@KevinDTimm Especially when there are occurences of 'any', 'most', 'never', or colors. – alecail Mar 25 '13 at 13:14
-
"Is your question solved yet?" is the easiest :) – KevinDTimm Mar 25 '13 at 13:19
-
It looks more like a hack than a solution. I want to setup the complete layout of my keyboard – alecail Mar 25 '13 at 13:30
-
Here is an article that explains how to do it: http://blog.carbonfive.com/2012/03/12/customizing-the-ios-keyboard/ – alecail Mar 26 '13 at 09:22
1 Answers
0
UIKeyboardType
The type of keyboard to display for a given text-based view.
typedef enum {
UIKeyboardTypeDefault,
UIKeyboardTypeASCIICapable,
UIKeyboardTypeNumbersAndPunctuation,
UIKeyboardTypeURL,
UIKeyboardTypeNumberPad,
UIKeyboardTypePhonePad,
UIKeyboardTypeNamePhonePad,
UIKeyboardTypeEmailAddress,
UIKeyboardTypeDecimalPad,
UIKeyboardTypeTwitter,
UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;
Set it as per your requirement.