It's trivial to make hyperlinks clickable in a UITextView
. You just set the "detect links" checkbox on the view in IB, and it detects HTTP links and turns them into hyperlinks.
However, that still means that what the user sees is the "raw" link. RTF files and HTML both allow you to set up a user-readable string with a link "behind" it.
It's easy to install attributed text into a text view (or a UILabel
or UITextField
, for that matter.) However, when that attributed text includes a link, it is not clickable.
Is there a way to make user-readable text clickable in a UITextView
, UILabel
or UITextField
?
The markup is different on SO, but here is the general idea. What I want is text like this:
This morph was generated with Face Dancer, Click to view in the app store.
The only thing I can get is this:
This morph was generated with Face Dancer, Click on http://example.com/facedancer to view in the app store.
KEY POINTS:
Swift 3 example to detect actions on attributed text taps
https://stackoverflow.com/a/44226491/5516830
Like wise you can add any action you want with
shouldInteractWith URL
UITextFieldDelegate method.Cheers!!
A quick addition to Duncan C's original description vis-á-vie IB behavior. He writes: "It's trivial to make hyperlinks clickable in a UITextView. You just set the "detect links" checkbox on the view in IB, and it detects http links and turns them into hyperlinks."
My experience (at least in xcode 7) is that you also have to unclick the "Editable" behavior for the urls to be detected & clickable.
If you want to use the NSLinkAttributeName in a UITextView, then you may consider using the AttributedTextView library. It's a UITextView subclass that makes it very easy to handle these. For more info see: https://github.com/evermeer/AttributedTextView
You can make any part of the text interact like this (where textView1 is a UITextView IBoutlet):
And for handling hashtags and mentions you can use code like this:
The heart of my question was that I wanted to be able to create clickable links in text views/fields/labels without having to write custom code to manipulate the text and add the links. I wanted it to be data-driven.
I finally figured out how to do it. The issue is that IB doesn't honor embedded links.
Furthermore, the iOS version of
NSAttributedString
doesn't let you initialize an attributed string from an RTF file. The OS X version ofNSAttributedString
does have an initializer that takes an RTF file as input.NSAttributedString
conforms to the NSCoding protocol, so you can convert it to/from NSDataI created an OS X command line tool that takes an RTF file as input and outputs a file with the extension .data that contains the NSData from NSCoding. I then put the .data file into my project and add a couple of lines of code that loads the text into the view. The code looks like this (this project was in Swift) :
For apps that use a lot of formatted text, I create a build rule that tells Xcode that all the .rtf files in a given folder are source and the .data files are the output. Once I do that, I simply add .rtf files to the designated directory, (or edit existing files) and the build process figures out that they are new/updated, runs the command line tool, and copies the files into the app bundle. It works beautifully.
I wrote a blog post that links to a sample (Swift) project demonstrating the technique. You can see it here:
Creating clickable URLs in a UITextField that open in your app
Swift Version :