I have a UIViewController and a UITextView in it. I want to get touchesbegan method in UIViewController, but of course, it's being blocked b the UITextView. So, do I have to subclass UITextView to override resignsfirstresponder? There's got be antoher way, otherwise I am going to have to create two files just to override a method that simply returns NO.
Thanks.
Update: Basically I want to display a UIActionSheet whenever the user taps on the screen. But I also want the UITextView to be scrollable.