Tagged Questions
The uikeyboard tag has no wiki summary.
20
votes
6answers
20k views
UIKeyboardBoundsUserInfoKey is deprecated, what to use instead?
I'm working on an iPad app using 3.2 sdk. I'm dealing with obtaining the keyboard size to prevent my textfields from hidding behind it.
I'm getting a Warning in Xcode -> UIKeyboardBoundsUserInfoKey ...
16
votes
5answers
759 views
Is there a way to prevent the keyboard from dismissing?
I realize that this is the inverse of most posts, but I would like for the keyboard to remain up even if the 'keyboard down' button is pressed.
Specifically, I have a view with two UITextFields. With ...
15
votes
1answer
620 views
Has anyone found a good way of using the new iOS5 keyboard events?
During development of a recent feature for my iPad app, I realized that the new iOS5 keyboard docking/splitting behavior was causing huge issues. I use an inputAccessoryView for the keyboard with a ...
8
votes
3answers
1k views
Can I programmatically fire the “switch to number pad” button on iPhone keyboard
I want to find a way to programmatically fire the selector that causes the iPhone keyboard to switch from letters to numbers. I am aware that I can switch the keyboard type, but I want to know if ...
7
votes
1answer
707 views
iPhone/iPad keyboard shortcuts?
There's an action in my program which users need to perform very frequently (potentially hundreds of times per session), and I'd like to add a keyboard shortcut for users with a bluetooth keyboard. Is ...
7
votes
3answers
4k views
textFieldShouldBeginEditing + UIKeyboardWillShowNotification + OS 3.2
I have multiple textfields on a UIView.
I resign for a previous textField in textFieldShouldBeginEditing method, where following sequence of events are performed
UIKeyboardWillHideNotification is ...
6
votes
1answer
166 views
UIView atop the Keyboard similar to iMessage App
currently I'm attempting to basically implement and exact copy of Apples iMessage App.
That means I need a UITextView that is docked at the bottom of the screen, and moves up when it becomes ...
6
votes
4answers
5k views
How to pull up a UIKeyboard without a UITextField or UITextView?
I'm currently developing an OpenGL ES game for the iPhone and iPod touch.
I was wondering how I can easily pull up the UIKeyboard?
Is there an official, documented possibility to pull up a ...
5
votes
2answers
813 views
UIKeyboardWillShowNotification not called for an undocked keyboard in iOS 5
I have found that UIKeyboardWillShowNotification and UIKeyboardDidShowNotification are not generated when an undocked/split keyboard appears in iOS 5. For instance, tap into a text field to show the ...
5
votes
1answer
2k views
UITextView inputView
I'm making a custom input method for the iPad, I want to be able to replace the system keyboard with my input method and enter text via that input method.
According to the documentation all I need to ...
5
votes
2answers
2k views
Dismiss keyboard on IPAD
The ResignFirstResponder for an UITextField on the Iphone semms to not working for the Ipad.
How can I dismiss my keyboard programmatically?
Thanks,
4
votes
1answer
1k views
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 ...
4
votes
4answers
5k views
How to show button ‘Done’ on number pad on iPhone OS 4?
I'd like to add a Done button to the iPhone number pad keyboard. There's even a handy space at the bottom left for just such a button.
Previously, I was using a similar trick to those described in ...
4
votes
1answer
2k views
Change text of “Return” keyboard button
How can I change the standard text of the "Return" button to something else?
I want it to be "Add".
3
votes
3answers
78 views
How to detect when “ABC” button is tapped on uikeyboard type “UIKeyboardTypeNumbersAndPunctuation”
I want to detect when "ABC" button is tapped on uikeyboard type "UIKeyboardTypeNumbersAndPunctuation" as well as i want to detect when "123" button is tapped on alphabetic keyboard type.
I am having ...
3
votes
4answers
124 views
Hide keyboard/ resignFirstResponder forcibly
i'm working on an app which has a tableView with a textField in the right side of its each cell(there are more than 20 cells).
i've created custom cell's for each row except for the last one.
In the ...
3
votes
3answers
764 views
Dismiss a number pad-style keyboard without adding Done key
There is no "Done" button on a Number Pad-type keyboard. I don't want to add a custom "Done" button, but how do I dismiss the keyboard?
3
votes
3answers
592 views
iOS: How to access the `UIKeyboard`?
I want to get a pointer reference to UIKeyboard *keyboard to the keyboard on screen so that I can add a transparent subview to it, covering it completely, to achieve the effect of disabling the ...
3
votes
5answers
2k views
How to make return key on iphone make keyboard disappear?
I have 2 uiTextFields (e.g. username and password) but I cannot get rid of the keyboard when pressing the return key on the keyboard.
How can I do this?
Thanks.
3
votes
4answers
653 views
How to resign or hide the keyboard?
I have a pick list to select a day and a text field to show the selected date. It will be like this...
If i choose any date, it will be like this....
The cross symbol in text field is acheived ...
3
votes
1answer
361 views
how to get images for ipad custom keyboard
Does anyone know how to get the button images and gradients for a custom ipad keyboard? I would like these buttons to look like the system keyboard buttons, but with different text on them. I have the ...
3
votes
4answers
5k views
iPad keyboard dimensions
I have found the iPhone's keyboard bounds in the apple documentation, but I can't find the iPad's keyboard bounds. Could you please help me?
2
votes
1answer
277 views
iOS5 - sharekit for twitter issue
I am facing keyboard issue in sharekit for iOS5 only.While posting text content to twitter.
.I have attached the screenshot for the screen in which I am facing the issues
1.Cancel button is not ...
2
votes
1answer
122 views
Is there a simple replacement for MonoTouch.UIKit.UIKeyboard.BoundsFromNotification?
MonoTouch.UIKit.UIKeyboard.BoundsFromNotification(MonoTouch.Foundation.NSNotificaton)]
was deprecated in iOS 3.2. Is there a simple replacement method/snippet I can use?
2
votes
2answers
118 views
iPhone: Can I make a UIDatePicker appear on top of a UIKeyboard?
What I'm trying to do:
I've got a standard UITableView, with several UITextFields and a few cells showing a time/date. Basically, it's a form where users can input both text and dates.
How it's ...
2
votes
1answer
151 views
Whether iPad 4.3 simulator is supporting UIKeyboardAppearanceAlert or not?
I have used this code:
myTextField.keyboardType = UIKeyboardTypeNumberPad;
myTextField.keyboardAppearance = UIKeyboardAppearanceAlert;
But when I run my project in iPad simulator 4.3, keyboard ...
2
votes
1answer
309 views
resignFirstResponder and proofreader/PRDBinit 16 byte leak?
We're having a minor issue dealing with the pesky iPhone keyboard.
We have tried
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[oneTextField resignFirstResponder]; // ...
2
votes
2answers
582 views
Custom Keyboard: inputView: how to change the Keyborad size?
I implemented the textfield with a custom keyboard with the "setInputView" function.
But i have a problem: my keyboard frame is not a standard iphone keybord frame.
The question is:
How can i change ...
2
votes
2answers
142 views
how can I put first character small in UITextField in iphone?
I want to insert email address, so first character will smaller, but as keyboard comes up, it shows the first character capital, so what should i to do >?
2
votes
2answers
661 views
Resign keyboard on 'Done' button of keyboard
I want to resign keyboard on click of 'Done' button on keyboard. How can i do this? I have following code =>
textView.returnKeyType = UIReturnKeyDone;
I have this code for limiting number of ...
2
votes
2answers
570 views
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 ...
2
votes
1answer
1k views
Best practice for UIKeyboard notifications - iPhone SDK
I have a drill down navigation app with three levels of UIViewControllers.
In each view controller, I have a UITextField where I am trying to subclass the UIKeyboard for each. My question is where ...
2
votes
1answer
405 views
UIKeyboardBoundsUserInfoKey deprecated in iphone 4.0 OS
-(void)keyboardWillShow : (NSNotification *)sender {
@try {
// NSLog(@"notification in first view");
for (UIWindow *keyboardWindow in [[UIApplication sharedApplication] windows]) {
...
2
votes
1answer
296 views
Simulating keyboard tap
Is there a way to programmatically tap a key, just as a user would so the key pop up animation takes place?
1
vote
1answer
67 views
How to test if UIKeyboardTypeDecimalPad is available?
According to the UITextInputTraits Protocol Reference, the UIKeyboardTypeDecimalPad is "Available in iOS 4.1 and later."
I am currently using the System Versioning Preprocessor Macros found in Check ...
1
vote
0answers
44 views
Is the iPhone keyboard button class public?
An app I'm developing needs a limited set of keyboard buttons in a custom view and I want the buttons to be identical to the standard iphone keyboard buttons, but this button style doesn't seem to be ...
1
vote
0answers
90 views
How should I get my inputAccessoryView to resize when rotating device?
I'm attaching a UIToolbar to my UITextView as its inputAccessoryView in order to add a button to dismiss the keyboard. This works great and it looks correct when the device is in portrait mode. But ...
1
vote
1answer
285 views
How to change the return key of UIKeyboard with customized button for iPhone using MonoTouch?
I need to add a button to UIKeyboard in the place of Return key and also need to raise events for that customized button for iPhone using MonoTouch.
1
vote
4answers
63 views
Reusing data entry methods across views
I have written code for scrolling my table view even when keyboard hides it from entering data, using the notification center and the keyboardDidShow and keyboardDidHide methods.
The problem is that ...
1
vote
2answers
76 views
Using jQuery keynav plugin with live()
I have a website with two columns, in the first is a form and the second an ajax generated series of divs. I need keyboard friendly navigation and so far jQuery plugin keynav is doing a good job.
But ...
1
vote
3answers
2k views
Programmatically change UITextField Keyboard type
Alright here's a doozy (I think). Is it possible to programmatically change the keyboard type of a uitextfield so that something like this would be possible:
if(user is prompted for numeric input ...
1
vote
2answers
527 views
How to detect UIKeyboard “backspace” button touch on UITextField?
How can i detect backspace button pressed on UIKeyboard?
thanks
EDIT: Is there any keyboard delegate that returns key pressed value?
1
vote
3answers
932 views
UIKeyboardWillShowNotification, UIKeyboardWillHideNotification and NSNotificationCenter problem between iOS versions
I have several UITextFields on my view (each inside a UITableViewCell). When the keyboard is fired from any of the textfields, I need to make some animations, mainly to change the frame of the ...
1
vote
1answer
252 views
UIKeyboardWillShowNotification wrongly called from next class in stack!
I detect when the keyboard will show with the below code. However, when I push to another screen using pushViewController and open the keyboard in that screen, keyboardWillShow is getting called! Is ...
1
vote
2answers
95 views
Detecting when 'Home' is pressed or app is resumed (Keyboard is covering View when it resumes)
In my iPhone app, if the user presses the Home button while the keyboard is up, then returns to the app, the keyboard is still up but my view behind is hidden behind it!
I have some code that normally ...
1
vote
1answer
635 views
Show UIDatePicker inside UIPopoverController after UIKeyboard is dismissed
I am pulling my hair out with this one.
I have a table inside a popover which allows the user to edit some data. Most of these editable cells need the user to enter data via the keyboard, but one ...
1
vote
2answers
271 views
Add a done button in a UINavigationbar
How does one add a done button to a UINavigationbar when the user touches a specific textfield or textview?
Or would a better way be to detect when the keyboard is showing, and then display the ...
1
vote
5answers
413 views
Making the view slide up to make room for the keyboard?
I just started learning to program iPhone apps and I can't seem to figure out how to make the view slide out of the way when the keyboard appears (so you can still see the text field you're typing ...
1
vote
2answers
225 views
How to customize the UIKeyboard in my app?
I want to change the Return button to Go button.
Any suggestions??
Thanks,
1
vote
1answer
122 views
How to change UITextField when edited
When my UITextField is pressed and type commences, my UITextField is covered up. Is there a way to move it up or move the keyboard? If so, what function would I do that in?