1

我正在使用 ASIHTTPRequest 从服务器获取 JSON 响应。我想将此响应转换为 NSArray。我的代码:

    NSURL *url = [NSURL URLWithString:@"http://chirkov.net.ua/iosnettest/request.php?act=showdata&query=2;0;3;0;ASC"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request startSynchronous];
NSError *error = [request error];
if (!error) { 
    NSData *responseData = [[NSMutableData alloc] initWithData:[request responseData]];
    NSArray *array = [NSKeyedUnarchiver unarchiveObjectWithData:responseData];
    NSLog(@"array = %@",array);
}

但有异常Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0xffffffef, 0xffffffbb, 0xffffffbf, 0x5b, 0x7b, 0x22, 0x69, 0x64。我该如何解决我的问题?

4

2 回答 2

1

您获取 JSON 数据,因此您必须使用 NSJSONSerialization 转换该数据。看看类参考。

http://developer.apple.com/library/ios/#documentation/Foundation/Reference/NSJSONSerialization_Class/Reference/Reference.html

还要检查这个使用 JSON

于 2013-02-14T13:46:27.923 回答
1

您可以像这样使用 NSJSONSerialization:

NSError *jsonError = nil;
NSArray *jsonObject = (NSArray *)[NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:&jsonError];
于 2013-02-14T14:13:16.527 回答