美文网首页
Swift中如何创建带中文字符(特殊字符)的URL

Swift中如何创建带中文字符(特殊字符)的URL

作者: r_lin | 来源:发表于2016-06-20 15:18 被阅读1104次
    let str = “http://www.example.com/栗子/"
    let encodedStr = str.stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLQueryAllowedCharacterSet())
    let url = NSURL.init(string: encodeStr!)
    

    相关文章

      网友评论

          本文标题:Swift中如何创建带中文字符(特殊字符)的URL

          本文链接:https://www.haomeiwen.com/subject/zumwdttx.html