Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been searching for this for hours but I failed. I probably don't even know what should I be looking for.

Many applications have text and in this text are web hyperlinks in rounded rect, when I click them UIWebView opens. What puzzles me is that they often have custom links, for example if words starts with # it is also clickable and aplication responds by opening another view. How can I do that? Is it possible with UILabel or do I need UITextView or something else?

I really hope it is standard functionality and i don't need to subclass anything :/

share|improve this question

6 Answers

up vote 38 down vote accepted

FancyLabel is exactly what I needed :)

share|improve this answer
4  
Quick link to code: furbo.org/stuff/FancyLabel_1.0.zip – pt2ph8 Dec 15 '11 at 18:54
Another reference is Three20 TTLabel api.three20.info/interface_t_t_label.php – Xuvi Jan 5 '12 at 15:02
This actually worked best for me: github.com/twotoasters/TTTAttributedLabel – JRG-Developer Dec 16 '12 at 22:33

The UIButtonTypeCustom is a clickable label if you don't set any images for it.

share|improve this answer
1  
easy solution! Thanks – TS.xy Jan 5 at 23:38

UITextView supports data-detectors in OS3.0, whereas UILabel doesn't.

If you enable the data-detectors on the UITextView and your text contains URLs, phone numbers, etc. they will appear as links.

share|improve this answer
yeah, I know about this, but I need also custom detection, e.g. #some_word as mentioned in my question – Lope Aug 10 '09 at 21:49

you might want to take a look at Joe Hewitt's open sourced three20 project. He has an example of how to build custom labels that have hyperlinks.

three20 project

share|improve this answer

For fully custom links, you'll need to use a UIWebView - you can intercept the calls out, so that you can go to some other part of your app instead when a link is pressed.

share|improve this answer

this looks promissing

http://locassa.com/index.php/interactive-rich-text-uilabel/

share|improve this answer
Cool! Thanks mate! – EmptyStack Jan 25 at 6:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.