I have a chat function in my application and I'm trying to hide the keyboard by dragging my finger down, just like you can hide the keyboard in an sms application in iOS 5.
I have subclassed the UITableView, however, as soon as the scrolling begins, I no longer receive calls
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
I am wondering how I can get the scroll and find out where the finger is while scrolling, so if it starts to get closer to the keyboard, I can hide it.
I think this is a feature that many people want, any ideas on how to do this?
odyth
source share