Is there a method to add an url for users looking for additional information? My alert looks like this
let alert = UIAlertController(title: "Alert details", message: "For more detailed information, click the link below", preferredStyle: UIAlertControllerStyle.Alert)
// add url here
let okayAction = UIAlertAction(title: "Ok", style: .Default) { (action) in
print(action)
}
alert.addAction(okayAction)
The idea is to redirect them to a webpage and close the UIAlertController in the app