码迷,mamicode.com
首页 > 其他好文 > 详细

[NSURL URLWithString:] 返回nil

时间:2014-08-14 19:50:09      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:http   使用   os   for   ar   问题   log   ad   

具体问题原因是url中输入的有中文,那么这个就看作非法的字符无法识别。这种的必须使用post方式来发送消息。具体为:

            tmp = mainurl;
            [parameters appendString:key];
            [parameters appendString:value];

NSURL * downloadUrl = [NSURL URLWithString:self.strURL];
        NSMutableURLRequest *requestL = [NSMutableURLRequest requestWithURL:downloadUrl
                                                                cachePolicy:NSURLRequestReloadIgnoringCacheData
                                                            timeoutInterval:60.0];
        [requestL setHTTPMethod:@"POST"];
        NSString *postString = parameters;
        [requestL setHTTPBody:[postString dataUsingEncoding:NSUTF8StringEncoding]];
        NSLog(@"the post body is %@",[NSString stringWithFormat:@"%@", postString]);
        


[NSURL URLWithString:] 返回nil,布布扣,bubuko.com

[NSURL URLWithString:] 返回nil

标签:http   使用   os   for   ar   问题   log   ad   

原文地址:http://www.cnblogs.com/lisa090818/p/3912832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!