I want to show some text + URL +some text + URL + some text. After creating this string with text + URL I want to set this text to a UILabel. How can is achieve this? I can use some other control instead of UILabel to show the text on the view I am flexible with that. I have googled for this but I found only one way which is to use the attributed text and the tap recognizer to recognize the touches and then handle them accordingly.Which I think will complicate things in my case. I want to know if there any way around to deal with this.
I want to do something like this "If you want to create a account go to Google.com or watch the demo video.You can email us call support 444-1520-1458"
All the text that is there in bold I want that to be clickable. And on that click I want to perform some action.I also want that bold text to appear in blue. I have googled for this issue found some links: 1)iOS UITextView or UILabel with clickable links to actions
2)How to make a clickable link in an NSAttributedString for a
In case of first link the logic seems perfect but the text I enter not center aligned. In second case the Attributed string in not ckickable. I have searched but havnt got success.Need some help