I need to get the range of characters from a tapped word from a UITextView. I have set up a UITapGestureRecognizer
on my instance of UITextView *tv
.
I currently have a solution that can tell me the word that was tapped, as described in this solution: Get word from tap in UITextView.
I need the range of characters of the word that was tapped, not just the word itself, preferably available in a way where I can access the start and end values as integers.