我的 Json 字符串是“{'message':'Test Driver'}”
如果我尝试 Nslog 这段代码NSLog(@"%@",[parser objectWithString:[request responseString] error:nil]);
parser 是 SBJsonParser 类的对象
输出:(空)
是否有任何其他可以解析此字符串的 json 库?
请帮助解析这个 Json 字符串
我的 Json 字符串是“{'message':'Test Driver'}”
如果我尝试 Nslog 这段代码NSLog(@"%@",[parser objectWithString:[request responseString] error:nil]);
parser 是 SBJsonParser 类的对象
输出:(空)
是否有任何其他可以解析此字符串的 json 库?
请帮助解析这个 Json 字符串
原始JSON
字符串应该是这样的格式
{“消息”:“测试驱动程序”}
至于其他 JSON 库,如果您的目标是 iOS 5 或更高版本,Apple 提供NSJSONSerialization。
您可以使用以下代码生成适当的 json 字符串并对其进行解析。它可以帮助你
NSDictionary *resDict = [parser objectWithString:[[request responseString] stringByReplacingOccurrencesOfString:@"'" withString:@"\""] error:nil];