iphone:URL initWithString 返回为空

Parameters

 

URLString

The string with which to initialize the NSURL object. This string must conform to URL format as described in RFC 2396. This method parses URLString according to RFCs 1738 and 1808.

 

 Discussion

This method expects URLString to contain any necessary percent escape codes, which are ‘:’, ‘/’, ‘%’, ‘#’, ‘;’, and ‘@’. Note that ‘%’ escapes are translated via UTF-8.

 

所以URLString中有空格的要变成:%20

[urlstring stringByReplacingOccurrencesOfString:@" "withString:@"%20"]]

然后还要进行编码转换

str=[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

 

 

 

 

posted on 2012-05-26 17:55  老Zhan  阅读(326)  评论(0编辑  收藏  举报