When the keyboard is showing on the iPhone's Messages app, if the user begins a swipe down from the messages tableview and continues into the keyboard area, the keyboard will begin to dismiss. If they move their finger up and down during this process, the keyboard moves with it.

Are Apple doing this with private APIs, or is there a way to control the keyboard like this from (I presume) a gesture recognizer?

link|improve this question
It does not do that on my iPhone. (3GS, iOS 4.3.3) – Mundi Aug 20 '11 at 19:36
Ah, this may hypothetically be in a future OS release then. I would like to discuss how such an effect could be obtained, in principle. – Michael Stet Aug 20 '11 at 22:01
I believe it is an iOS 5.x feature. Should be out of NDA by now. – ranReloaded Jan 30 at 7:21
Sadly, this functionality still hasn't appeared in iOS 5.x. Check out my answer for an open source attempt. – Daniel Amitay Feb 19 at 22:33
feedback

4 Answers

I created UIView, UITableView, and UIScrollView subclasses which enable the functionality you want:

https://github.com/danielamitay/DAKeyboardControl

It hasn't been tested in the App Store (that I know of), but it uses no dirty hacks or undocumented functions.

link|improve this answer
simply awesome! (someone needs to accept this as the answer) – Filipe Pina Mar 21 at 17:41
feedback

You can use UISwipeGestureRecognizer to do so. I don't know how to implement it using code, but if you are using the new xcode 4.2 beta then heres an easy method:

  1. Create an IBAction:

- (IBAction)dismiss:(id)sender;

  1. Go to your view in your xib and set the class for you view to UIControl.

  2. Drag and connect the UISwipeGestureRecognizer from the Library to your view.

  3. Connect the IBAction (TouchDown) with the UISwipeGestureRecognizer.

  4. Write the code to dismiss the keyboard:

- (IBAction)dismiss:(id)sender { [yourTextField resignFirstResponder]; }

Done!

link|improve this answer
That would not work. The keyboard would slide down and disappear, but not come back up when the finger moves up again before the gesture is finished. – Mundi Aug 21 '11 at 0:04
Well thats the only method that works to dismiss a keyboard with a swipe gesture that I know. Just wanted to help! – Maxner Aug 21 '11 at 1:24
feedback

I think the best way is to place a hidden button above the text input container. a long strip and when it detects a touchdown and release or cancel then hide the keyboard.

I'm going to try it and i will let you know how i go.

link|improve this answer
feedback

Short answer; They're most likely doing some 'Private API' thing there.

I'm most sure that the keyboard is in an independent view, above your app's window (You do not have access/control to it and it always displays on top, no matter what). The most you can do is have the input view become/resign first responder status, and the keyboard will appear/disappear accordingly: All or nothing.

You may be able to get a handle of the keyboard view and change its frame property (using undocumented properties of documented classes, and undocumented classes), but I'm pretty sure that will get you kicked out of the store.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.