Questions tagged [uikeyboard]

uikeyboard is an iOS object used to represent a keyboard. Implementors use it to create an interface which approximates a physical keyboard

1026 questions
24
votes
3 answers

iOS7 Keyboard Return/Done/Search tint colour

With the new iOS7 UIView tint color it becomes pretty easy to theme an entire app quickly. It even changes the color of the text caret when editing UITextFields. However, the keyboard's bottom right 'dismiss' button (can be Done, Search, etc) is…
Tyson
  • 14,406
  • 6
  • 26
  • 40
23
votes
2 answers

Can't find keyplane that supports type 4 for keyboard iPhone-Portrait-NumberPad

I recently upgraded to Xcode 7 and today I noticed this warning in the log when I tapped a text field and the keyboard popped up: Can't find keyplane that supports type 4 for keyboard iPhone-Portrait-NumberPad; using…
Alex Craciun
  • 453
  • 1
  • 3
  • 12
23
votes
3 answers

iOS 8 keyboard hides my textview

I have a UIViewController presented using self.accountViewController.modalPresentationStyle = UIModalPresentationFormSheet; and now in iOS 8 the last UITextView is hidden from the keyboard when it will pushed up. How to avoid It?
Alessio Crestani
  • 1,484
  • 4
  • 16
  • 37
20
votes
2 answers

Action of the "Go" button of the ios keyboard

How do I bind an action to the Go button of the keyboard in iOS ?
Alexis
  • 15,669
  • 15
  • 60
  • 101
19
votes
3 answers

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?
elp
  • 7,607
  • 7
  • 58
  • 113
19
votes
2 answers

Custom Keyboard: Hub connection error

recently I was playing around with the custom keyboard extension in iOS 8 Beta with Swift (Xcode beta 6), but I keep getting this error when I run it on a simulator, it seems to be quite random and I've no idea what causes it: plugin…
niclas
  • 539
  • 1
  • 5
  • 15
17
votes
1 answer

-[_NSObserverList setCursorPosition:]

I am getting #560 NSInvalidArgumentException error as shown below; -[_NSObserverList setCursorPosition:]: unrecognized selector sent to instance 0x1702a6ea0 CoreFoundation ___exceptionPreprocess Fatal Exception: NSInvalidArgumentException 0 …
17
votes
2 answers

enabling the "return button" in a UITextField keyboard (objective-c/iphone)

When I start editing a UITextField, I have the "Clear When Editing Begins" option checked so it starts off with no text. However, the "Return" button is grayed out until you type at least one character. I've seen other iphone apps where the "Return"…
peter61
  • 279
  • 1
  • 4
  • 7
17
votes
1 answer

iOS 8 Xcode how to remove QuickType on UIKeyboard ( auto complete / auto suggest )

UIKeyboard with QuickType! It is bad to know that there is no sufficient space of screen on iPhone devices, now apple has been taken more room by adding QuickType. How can I remove it for items that do not need quicktype's auto complete, auto…
Mike Zriel
  • 1,141
  • 1
  • 12
  • 26
17
votes
2 answers

UITextField and Keyboard Notifications - strange order

So I've set up a notification for the keyboard appearance event. Now let us consider a UITextView and a UITextField. [[NSNotificationCenter defaultCenter] addObserver:self …
Bourne
  • 9,036
  • 5
  • 22
  • 51
16
votes
2 answers

UIKeyboard will change frame with interactive keyboard dismiss, not called continuously

I am trying to use the UITableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.Interactive, to be able to drag my keyboard up and down. However I can't find any way to track the keyboard frame to update my tableView frame and messaging…
TimWhiting
  • 2,207
  • 4
  • 18
  • 37
16
votes
4 answers

UIKeyboardDidShowNotification called multiple times, and sometimes with incorrect keyboard dimensions

I am trying to move a UITextView above the keyboard whenever the keyboard appears/changes. Let's say I have the English keyboard displaying and then switch directly to the Chinese keyboard (which is taller than the standard English keyboard). In…
Benny B
  • 315
  • 1
  • 3
  • 12
16
votes
4 answers

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?
Infinite Possibilities
  • 7,313
  • 13
  • 49
  • 116
16
votes
9 answers

UITextView cursor below frame when changing frame

I have a UIViewCOntrollerthat contains a UITextView. When the keyboard appears I resize it like this: #pragma mark - Responding to keyboard events - (void)keyboardDidShow:(NSNotification *)notification { NSDictionary* info = [notification…
Anders
  • 3,065
  • 7
  • 54
  • 106
15
votes
2 answers

Synchronizing Animations in keyboardWillShow keyboardWillHide -- Hardware Keyboard & Virtual Keyboard Simultaneously

Preamble So I have an application featuring a chat section, and I'm synchronizing the animation of the keyboard hiding and showing with the rise and fall of the chat input. Here's the code I'm using: SHOW: - (void)…
Logan
  • 49,229
  • 19
  • 92
  • 123
1 2
3
68 69