Objc:使用不符合RFC 2396的String创建NSURL

时间:2011-01-26 11:01:43

标签: iphone objective-c formatting nsstring nsurl

我遇到这种情况,我需要创建一个包含“。

的字符串的URL

例如:

NSString *myStringWithURL = [NSString stringWithFormat: 
                             @"http://myurl.com/setParam.php?setName=
                             {\"name\":\"%@\"} ", name];
// myStringWithURL will return the desired URL but it is a String.
// of course I need it as URL in order to make the request.
NSURL *targetURL = [NSURL URLWithString : myStringWithURL]; 
                       //This will return nil. 

所以问题是如何让我的网址不返回nil?

部分{“name”:“My Name”}应该是JSON,但这似乎比使用NSDictionary然后使用JSON的解析器等更简单。

非常感谢你的帮助!!

1 个答案:

答案 0 :(得分:5)

使用stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding转换你的字符串