Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a chat feature in my app and I am trying to hide the keyboard by dragging the finger downward just like how you can hide the keyboard in the sms app in IOS 5.

I have subclassed UITableView, however as soon as scrolling starts I no longer get calls to

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event

I am wondering how I can get scrolling and find out where the finger is during scrolling so that if it starts to get close to the keyboard I can start to hide it.

I think this is a feature lots of people will want, any ideas on how to make it?

share|improve this question
AFAIK if the table view doesn't take over the drag gesture, then all subsequent touch events are sent to the scroll view instead. So you need to implement this in a subclass of UIScrollView, or perhaps in a delegate of it. – Abhi Beckert Dec 8 '11 at 8:13
Yea I thought about that, but wasn't sure how to replace the tableview's scroll viewer with my version – odyth Dec 8 '11 at 18:10
Sorry, you can disregard my previous comment. I had no idea UITableView is a subclass of UIScrollView. I've never seen a scroll view setup like that before. – Abhi Beckert Dec 8 '11 at 19:32

4 Answers

http://www.cocoacontrols.com/platforms/ios/controls/dakeyboardcontrol here its an MIT Licensed code source for what you are looking for.

share|improve this answer
@odyth, this is the answer you should want. i was just looking to do this myself, and DAKeyboardControl is super easy to use. one line of code (+ the #import), and it works like a charm. – john.k.doe Dec 1 '12 at 6:35

I had enabled this feature in my app, with the help of Daniel's DAKeyboardControl library. You can implement the iMessage style keyboard hiding acidity with just one line of statement:

[self.view addKeyboardPanningWithActionHandler:^(CGRect keyboardFrameInView) {
    // Move interface objects accordingly
    // Animation block is handled for you
}];
share|improve this answer

UITableView inherits from UIScrollView, so you can detect the scroll position with UIScrollViewDelegate methods like - (void)scrollViewDidScroll:(UIScrollView *)scrollView

share|improve this answer
how do you get the position of the user's finger though? – odyth Dec 8 '11 at 9:07
Create your own subclass of UITableView, implement the UIScrollView's touchesShouldBegin:withEvent:inContentView: method to detect the touch point, then monitor the movement in scrollViewDidScroll: to hide the keyboard or not. – changx Dec 8 '11 at 9:18
up vote 2 down vote accepted

Further googling revealed that this question is a duplicate of:

How to move iPhone keyboard down like in Messages.app?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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