我已经阅读了关于SO的100个问题,但我仍然无法弄清楚如何从一组简单的字符串创建一个简单的JSON对象。每次尝试都以未解决的参考结束。
例如:
Key1:value1
Key2:value2
Key3:value3
我想使用Objective C从上面创建一个JSON对象。谢谢。
编辑:这是我创建字典的方式。
NSDictionary *jsonDict = [NSDictionary dictionaryWithObjectsAndKeys:
@"key1", @"val1",
@"key2", @"val2",
@"key3", @"val3",
nil];
答案 0 :(得分:2)
NSDictionary *jsonDict = [NSDictionary dictionaryWithObjectsAndKeys:
@"key1", @"val1",
@"key2", @"val2",
@"key3", @"val3",
nil];
NSError *error;
NSData *jsonData =[NSJSONSerialization dataWithJSONObject:jsonDict options:0 error:&error];
此数据将为json格式