I need to have a label with clickable text, I read answers here suggesting FancyLabel.
Is there some new alternative to it?
I know I could also use UIWebView for that but that would be to slow, is there some better way to achieve that?
Thanks
I need to have a label with clickable text, I read answers here suggesting
Share
You could just set
userInteractionEnabledtoYESon it, then add aUITapGestureRecognizerto theUILabelto detect when someone taps on it.If you want only part of the text to be clickable, then you’re going to have to do a lot more work and would probably want to be a completely custom view which handles all of the business logic for doing something that complex.