uikeyboard

iphone keyboard keydown/keyup events??

Hello Everyone, I am a newbie in iphone development, yet wondering why i am not able to find any help regarding the keyboard keyup/keydown events, I actually want to detect which key is been pressed by the user via keyboard on iphone while inputting the text in the UITextField. I need an urgent help!! ..... Thanks in advance Mehroz ...

UIKeyboard extra keys.

I am looking for a way to add extra keys to a UITextView's keyboard or add a UIToolbar above it. How might I go about this? EDIT This is for an iPad app and if I was to add extra keys I would need a new row for them in the UIKeyboard. ...

UIKeyboardTypeDecimalPad localization

I noticed that UIKeyboardTypeDecimalPad was added in iOS 4.1, and started using it. During the course of my testing, I switched both the language and region to French in the International section of Settings. I expected the decimal key on the keypad in my app to change from a "." to a "," but it didn't. All I'm doing is this: _textFi...

Getting the size of the iPad on-screen keyboard after rotation

For an app I’m designing for the iPad, I have a scroll view with some text fields/text views in it. In order to keep everything visible, I adjust the contentSize property of the scroll view to add a buffer at the bottom that corresponds to how much the keyboard overlaps the scroll view. Here’s the code (there’s some app-specific stuff he...

Detect if UIKeyBoard is Showing

I'd like to detect whether or not the keyboard is showing. I've found a few other posts that traverse the subviews of UIWindow to find the keyboard, but if that is the only way then I'll figure out something else. I suppose I could also observe the UIKeyboard notifications, but I'm guessing there is a cleaner solution out there. ...