I'm new in iOS development and here's my problem. In my app, I've some looong texts to show, but in those texts, I want some words to be underlined and "active". What I mean by "active" is that I can click on one of those words to popup a definition or a picture.
I thought using UITextView and UILabel such that I use a Textview until I get an active word (which I show thanks to a label connected to a popup) then I use a Textview again.
If i want this : bla bla bla bla ACTIVE bla bla bla bla ...
I would use : TextView Label TextView ...
Besides that, I've no idea how to do this and I realise this is a pretty bad way of doing it.
My texts and words have to be in an XML file and I'm not sur about the best structure to use...