Does anyone know how the built-in Notes app manages to show data detectors and yet still have its UITextView editable?
I've tried defaulting editable to NO (so the data detectors will work) then overriding UITextView's touches methods and setting it to YES, but it ends up scrolling to the bottom and I have to tap again to actually begin editing.
I also tried it with a tap gesture recognizer and the same thing happens. I'm trying to see the touch event in-flight and turn editable to YES so that the UITextView will begin editing at the tap point but no dice - I am not able to get it to pass the touch event through to the UITextView if I mess with its editable property.