I want to display message of alert dialog with clickable link.
For example, my message For more info please visit our website: (I WANT TO PUT LINK HERE FOR USER TO INTERACT)
.
How can I achieve this kind of thing?
This is my code
let dialog = MDCAlertController(title: DialogErrorMessage().errorTitle, message: message)
dialog.buttonTitleColor = UIColor(red:0.03, green:0.62, blue:0.09, alpha:1.0)
let okayButton = MDCAlertAction(title: DialogTitleMessage().okayTitle) { (action) in
}
dialog.addAction(okayButton)
dialogPresent(view: dialog)