当使用stringByReplacingOccurencesOfString()到最新版本的
Xcode 8.2 Beta时,我有一个问题.使用该函数时,Xcode显示字符串的值类型没有成员.
原文链接:https://www.f2er.com/swift/319735.htmlvar clockworkSmsUrl = "https://api.clockworksms.com/http/send.aspx?" + "key=123456789abcd" + "to=" + usersNumber! + "&content=" + usersTextMessage! clockworkSmsUrl.stringByReplacingOccurrencesOfString(" ",withString: "+") var clockworkSmsURLconvert = NSURL(string: clockworkSmsUrl)
有任何想法吗?