Hi Apple dev Team,
Alert view controller message text is truncated when the message contains URL strings. Please help me on this.
I am using below code please check and let me know if anything wrong with Alertview controller API's.
`let urlString = "htttp://google.com"
let message = "targ.et is not running or doesn't have entitlement com.apple.runningboard.assertions.webkit Are you sure, you want to get redirected to arget is not running or doesn't have entitlement com.apple.runningboard.assertions.webkit Are you sure, you want to get redirected to %@ ? \(urlString)"
let noAction = UIAlertAction(title: "No", style: .cancel, handler: nil)
showAlert(title: "Redirecting to external URL",
msg: message,
style: .alert,
actions: nil)`