Questions tagged [uikeyboardtype]

The type of keyboard to display for a given text-based view in iOS.

The keyboard style associated with the text object. (required)

@property(nonatomic) UIKeyboardType keyboardType

Text objects can be targeted for specific types of input, such as plain text, email, numeric entry, and so on. The keyboard style identifies what keys are available on the keyboard and which ones appear by default. The default value for this property is UIKeyboardTypeDefault.

Available in iOS 2.0 and later
Declared In UITextInputTraits.h

typedef enum {
   UIKeyboardTypeDefault,
   UIKeyboardTypeASCIICapable,
   UIKeyboardTypeNumbersAndPunctuation,
   UIKeyboardTypeURL,
   UIKeyboardTypeNumberPad,
   UIKeyboardTypePhonePad,
   UIKeyboardTypeNamePhonePad,
   UIKeyboardTypeEmailAddress,
   UIKeyboardTypeDecimalPad,
   UIKeyboardTypeTwitter,
   UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;
72 questions
0
votes
0 answers

Specify Responsive Input Keyboard Type

I'm building a website that I would like to have a good responsive interface - a big part of what that means for this site is semantic input types so the right mobile keyboard pops up (ie. numberpad for tel). What I'd like is to pop up the…
WFW
  • 105
  • 9
0
votes
1 answer

How to disable default return key on UIKeyboardTypeDefault for UITextfiled when Text length is <=4

How to disable default return key on UIKeyboardTypeDefault for UITextField when text length is <=4? Can any one help me on this? Thanks in advance.
0
votes
2 answers

How to show Emoji like skype in ios sdk

I am creating Chat Application. I want enable emoji symbols like skype in my application even thought the Settings -> General ->Keyboard -> Add New Keyboard ->Emoji Was not enabled in device. I need to display the emoji like the above image.…
btmanikandan
  • 1,883
  • 2
  • 24
  • 45
0
votes
0 answers

iOS: read manually changed UIKeyboardType from UITextView

I create a UITextView with a specific UIKeyboardType programmatically, lets say UIKeyboardTypeEmailAddress. Now I need to read out if the User changes the UIKeyboardType manually to set the next UITextView with this value, but this does not work. If…
0
votes
1 answer

UITextField not staying Autocapatalized

I am having some trouble with my auto capitalization of characters in my UITextField. It works perfectly fine on the default UIKeyboard however if I try to use UIKeyboardTypeNamePhonePad then the auto capitalization dosnt work. heres my code, -…
HurkNburkS
  • 5,332
  • 19
  • 93
  • 176
0
votes
1 answer

UIReturnKey not showing in UIKeyboardTypeDecimalPad

Very simple question: How do I add a UIReturnKey to a UIKeyboardTypeDecimalPad? If I assign the textField.returnKeyType = UIReturnKeyNext; to the textfield, nothing happens (as it normally would given any other keyboard type). Thanks.
casparjespersen
  • 2,662
  • 4
  • 32
  • 44
0
votes
1 answer

UIKeyboardType overridden by default keyboard for language?

I'm currently developing an application with a primarily Japanese (secondary English) market, and I've found that I cannot set UIKeyboardType for a textfield and get it to actually work if using a tenkey/flick style Japanese keyboard. Even though…
n_b
  • 1,056
  • 1
  • 9
  • 19
0
votes
2 answers

how to make (,) to (.) for decimal button when using uikeyboardTpeDecimalPad

I use UIKeyboardTypeDecimalPad for keyboardType. When I test in mac, I see button decimal in (.), but when I test in iPod, decimal button become (,). How can I fix this ? This is the code I tested: self.rielPayTextField.keyboardType =…
user1584341
0
votes
2 answers

How set a keyboard for number text field and alphabetic text field?

I have a layout where i have two text fields one is for alphabetic input and another one for numeric input. I have set different type of keyboards for these like as default for alphabetic text field and number for numeric field. I have added a done…
ios
  • 552
  • 5
  • 22
0
votes
1 answer

Next and Back tabs in UIKeyboard

using Xcode 4.3 I'm trying to toggle between text fields with a back and next tab in a UIKeyboardTypeDecimalPad keyboard. Can I add those to this type of keyboard? if so how?
Pencil
  • 65
  • 1
  • 6
0
votes
2 answers

how to use spanish ,french ,chinese ,german keyboard in app

i want to have different language (spanish,german,french,chinese and so on) keyboard in my app. How can i use different language keyboard in my app. thank you
iosDev
  • 604
  • 2
  • 11
  • 28
0
votes
1 answer

Add minus button to uikeyboardtypenumpad

I am trying to add minus button to UIKeyboardTypeNumPad using accessory view. My problem is that I want it to be over the keyboard ( on left to "0" key). - (UIView *)inputAccessoryView { if (!inputAccessoryView) { CGRect accessFrame =…
MIWMIB
  • 1,235
  • 1
  • 12
  • 24
1 2 3 4
5