1
let address = "http://www.example.com/?cevent=imt%2Fguide%252525252525252F"
let address2 = "http://www.example.com/?cevent=imt%2Fguide%2525252525252521"
let bodyString=NSMutableString()
bodyString.appendFormat("\(address)")
使用して、私はランタイムエラー私が遊び場、コードエラーでテストするときNSMutableString
bodyString.appendFormat("\(address2)")
それが動作
を使用するときに!どうして?
それが動作する、ありがとう! –