我使用此代码从我的iOS应用程序中获取来自GET调用的php页面响应。
NSLog(@"%@", parameters);
// Send data to the web services
NSError *error;
NSString *result = [NSString stringWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://178.63.103.3/hermes-resource/ws.php%@", parameters]] encoding:NSUTF8StringEncoding error:&error];
NSLog(@"%@", error);
NSString *result_;
if (result)
{
result_ = [self convert:result];
}
这是我从stringWithContentsOfURL方法和参数字符串日志中得到的错误。
2014-07-18 11:44:51.036 Hermes[542:60b] ?name=Luca D'Alberti&email=email@ext.it&range=21-39&graphic=5&userx=1&gamed=Si&comment_game=&errors=No&comment_errors=&feed=Fvdgd fvdgd
2014-07-18 11:44:51.042 Hermes[542:60b] Error Domain=NSCocoaErrorDomain Code=256 "The operation couldn’t be completed. (Cocoa error 256.)"
为什么会出现此错误?