我有一个JSON数组
{
"people":[
{
"id": "8080",
"content": "foo"
},
{
"id": "8097",
"content": "bar"
}
]
}
Run Code Online (Sandbox Code Playgroud)
我如何搜索8097并获取内容?
我有一些代码打开NSColorPanel.如何检测颜色何时更改然后运行回调?
NSColorPanel *colorPanel = [NSColorPanel sharedColorPanel];
[colorPanel orderFront:nil];
Run Code Online (Sandbox Code Playgroud)
提前致谢.