我想显示带有可点击链接的警报对话框消息。例如,我的消息For more info please visit our website: (I WANT TO PUT LINK HERE FOR USER TO INTERACT)
。
我怎样才能实现这种事情?
这是我的代码
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)