iOS 8 linking to a website through a text view

653 Views Asked by At

I'm working on an app that needs to link to Stripe's terms of service website. I have a text view in my view controller. https://stripe.com/connect/account-terms works as a link when I set the behavior to Selectable and the detection to links and addresses. However, I would link to hide the link behind the phrase "Stripe Connected Account Agreement".

Does anyone know how to do this using Swift and iOS 8?

Also, as a design choice, I do not have to do anything except have a link present to the terms of service to meet legal compliance. Still, should I consider implementing a web view?

1

There are 1 best solutions below

0
On

Use a NSAttributedString constructed like this: NSAttributedString(string:"Stripe Connected Account Agreement", attributes:[NSLinkAttributeName: NSURL(string:"http://website.com")])