https://github.com/rickytan/XPaste
将你的 json 文本:
{
"name": "John",
"age": 30,
"house": null,
"cars": [ "Ford", "BMW", "Fiat" ]
}
直接粘贴为 NSDictionary:
id object = @{@"age": @30,
@"cars": @[@"Ford",
@"BMW",
@"Fiat"],
@"name": @"John",
@"house": [NSNull null]};
等等
1
ufo22940268 2018-11-20 09:35:49 +08:00
请教大佬,为什么用 Object-C 写
|
2
0x0o 2018-11-21 07:32:24 +08:00
Star 支持一下
|
3
rickytan OP @ufo22940268 不太喜欢 Swift ……
|