I have a table view in which each row contains various information like name, picture, message etc.
This message may contain some words starting with '@' or '#'. I want to make these words clickable and on click i want to open another view controller instead of browser.
I know we can set UIDataDetector
type on textview for links but that only works for links.
Is there any way so that I can tell textview to detect text matching some regular expression and then make that text clickable ?
EDIT: Finally I am able to achieve this, for those who are still dealing with this issue, I have written a blog post: http://www.uditagarwal.com/2013/10/make-different-words-in-uitextview.html