美文网首页
ios 9.0之后的url 中文格式化

ios 9.0之后的url 中文格式化

作者: 贝勒老爷 | 来源:发表于2017-04-11 17:39 被阅读125次
    #pragma mark - url 中文格式化
    + (NSString *)strUTF8Encoding:(NSString *)str
    {
        /*! ios9适配的话 打开第一个 */
        if ([[UIDevice currentDevice] systemVersion].floatValue >= 9.0)
        {        
            return [str stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet characterSetWithCharactersInString:@"`#%^{}\"[]|\\<> "].invertedSet];
        }
        else
        {
            return [str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
        }
    }
    
    

    相关文章

      网友评论

          本文标题:ios 9.0之后的url 中文格式化

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