Add UITapGestureRecognizer to UITextView without blocking textView touches
问题 How can I add a UITapGestureRecognizer to a UITextView but still have the touches getting through to the UITextView as normal ? Currently as soon as I add a custom gesture to my textView it blocks the tap for UITextView default actions like positioning the cursor. var tapTerm:UITapGestureRecognizer = UITapGestureRecognizer() override func viewDidLoad() { tapTerm = UITapGestureRecognizer(target: self, action: "tapTextView:") textView.addGestureRecognizer(tapTerm) } func tapTextView(sender