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?
UIScrollView, or perhaps in a delegate of it. – Abhi Beckert Dec 8 '11 at 8:13UITableViewis a subclass ofUIScrollView. I've never seen a scroll view setup like that before. – Abhi Beckert Dec 8 '11 at 19:32