I have a transparent view sitting on top of a UITextView which is responsible for allowing the user to drag images around. However, if the user isn't touching an image, I'd like to pass the touch events to the UITextView so the user can bring the keyboard up, type, copy, etc. just as if there wasn't a view on top of it. How is this accomplished?
I tried passing the touch events directly to the UITextView as well as calling nextResponder, but that doesn't work. Suggestions would be appreciated.