How do I URL encode a string

前端 未结 22 1706
轮回少年
轮回少年 2020-11-22 07:16

I have a URL string (NSString) with spaces and & characters. How do I url encode the entire string (including the & ampersand

22条回答
  •  一生所求
    2020-11-22 08:15

    This code helped me for encoding special characters

    NSString* encPassword = [password stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet alphanumericCharacterSet]];
    

提交回复
热议问题