I am making an iOS version of an Android app. I want to make the string I am passing through to be bold. In the other app it is done by adding html as shown below. I tried this and it did not work. Is there a way of implementing this or work around possibly?
Side note: showPrompt is a switch I made for UIAlertController functions.
Thanks,
func systemUpdateCheck(oCurVer: String){
showPrompt("A new version has been released,<b>v." + oCurVer + "<b>.<br/>Tap OK to download and install the new version", sType: "alert", sJSResp: "")
}