iOS URL 에 중국어 처리 url 이 포함 되 어 있 습 니 다. 특수 문자 처리

//     url      
//       uincode 20180813150735_\U5de5\U7a0b\U5e08\U5934\U50cf.png 
NSString *str = @"http://xxxxxx.com/uploads/image/20180813/20180813150735_\U5de5\U7a0b\U5e08\U5934\U50cf.png";
//  stringByAddingPercentEncodingWithAllowedCharacters  
NSString *headImgURL = [str stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet  URLQueryAllowedCharacterSet]];
NSLog(@"%@",headImgURL);//http://xxxxxx.com/uploads/image/20180813/20180813150735_%E5%B7%A5%E7%A8%8B%E5%B8%88%E5%A4%B4%E5%83%8F.png


참고 문장https://www.jianshu.com/p/21a21866e379 https://nshipster.cn/nscharacterset/

좋은 웹페이지 즐겨찾기