I am trying to create an object that can have clickable text within it.
For instance: I have text displayed to the user: "Please verify the terms and conditions prior to accepting registration."
I want to make just the "terms and conditions" text show as a link. The text would be underlined an blue.
When the user clicks the text I want them to be navigated to my terms and conditions viewcontroller page. So the link is internal to the application, not an external web page.
Questions
- How do I display the text with only making the specific text linkable?
- How do I 'seque' to the ViewController page via the user clicking the linked text?