美文网首页
URLWithString 返回nil 问题

URLWithString 返回nil 问题

作者: 生命不止运动不息 | 来源:发表于2019-10-30 21:58 被阅读0次

当字符串中含有中文时,使用URLWithString会为nil, ios9 之后,使用如下方法转义一次,即可

NSString *fileUrl = @"http://www.helow/sabc/sgo‘ab.mp3";
fileUrl = [fileUrl stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
NSURL *url = [NSURL URLWithString:fileUrl];

相关文章

网友评论

      本文标题:URLWithString 返回nil 问题

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