Iphone JSON验证错误

Iphone JSON验证错误,iphone,objective-c,xcode,ios4,Iphone,Objective C,Xcode,Ios4,这是一个json对象:contentofresponseStatainJSonValue 我想得到你好世界。 怎么做 [[["您好世界","Hello world","N n h o sh ji "]],,"en"] 请执行此操作,错误: JSONValue失败。错误跟踪是:( “Error Domain=org.brautaset.JSON.ErrorDomain Code=3\“未识别的前导字符\”UserInfo=0x739f0c0{NSLocalizedDescription

这是一个json对象:
contentofresponseStatainJSonValue

我想得到
你好世界。
怎么做

[[["您好世界","Hello world","N n h o sh ji "]],,"en"]     
请执行此操作,错误:

JSONValue失败。错误跟踪是:( “Error Domain=org.brautaset.JSON.ErrorDomain Code=3\“未识别的前导字符\”UserInfo=0x739f0c0{NSLocalizedDescription=Unrecogned leading character}”, “Error Domain=org.brautaset.JSON.ErrorDomain Code=3\”解析数组时的预期值\“UserInfo=0x739f140{NSUnderlyingError=0x739f120\”无法识别的前导字符\“,NSLocalizedDescription=解析数组时的预期值\”

看看下面的例子,我想说在一个数组中有两个逗号但它们之间没有任何内容是非法的。你的JSON格式不正确

NSString *returnStr=[[[[contentOfResponseDataInJsonValue JSONValue] objectAtIndex:0] objectAtIndex:0] objectAtIndex:0] ;
编辑:为了证明我的观点,这里有一个。

看看,我想说在一个数组中有两个逗号之间没有任何内容是非法的。你的JSON格式不正确

NSString *returnStr=[[[[contentOfResponseDataInJsonValue JSONValue] objectAtIndex:0] objectAtIndex:0] objectAtIndex:0] ;
编辑:为了证明我的观点,这里有一个例子