S spire.bt macrumors newbie Original poster Apr 8, 2010 22 0 Jun 2, 2010 #1 is it possible to NOT show the keyboard when clicking on a text field, instead of that to write numbers from buttons on the view...something like a calculator i'm new in this so i don't know all the possibilities
is it possible to NOT show the keyboard when clicking on a text field, instead of that to write numbers from buttons on the view...something like a calculator i'm new in this so i don't know all the possibilities
J jnic macrumors 6502a Oct 24, 2008 567 0 Cambridge Jun 2, 2010 #2 You can use the UITextInputTraits protocol to set the keyboard type, which includes a numeric keypad. Alternatively, you could override becomeFirstResponder (and related methods) to show your own custom keyboard view.
You can use the UITextInputTraits protocol to set the keyboard type, which includes a numeric keypad. Alternatively, you could override becomeFirstResponder (and related methods) to show your own custom keyboard view.
robbieduncan Moderator emeritus Jul 24, 2002 25,611 893 Harrogate Jun 2, 2010 #3 Yes. Read the documentation. As a hint: http://developer.apple.com/iphone/l...ml#//apple_ref/occ/instp/UITextView/inputView http://developer.apple.com/iphone/l...l#//apple_ref/occ/instp/UITextField/inputView
Yes. Read the documentation. As a hint: http://developer.apple.com/iphone/l...ml#//apple_ref/occ/instp/UITextView/inputView http://developer.apple.com/iphone/l...l#//apple_ref/occ/instp/UITextField/inputView
S spire.bt macrumors newbie Original poster Apr 8, 2010 22 0 Jun 2, 2010 #4 jnic said: You can use the UITextInputTraits protocol to set the keyboard type, which includes a numeric keypad. Alternatively, you could override becomeFirstResponder (and related methods) to show your own custom keyboard view. Click to expand... so you say the native keyboard can be only numerical?
jnic said: You can use the UITextInputTraits protocol to set the keyboard type, which includes a numeric keypad. Alternatively, you could override becomeFirstResponder (and related methods) to show your own custom keyboard view. Click to expand... so you say the native keyboard can be only numerical?