我无法检查我的一把钥匙是否为空。
以下是我正在使用的解析 JSON 响应:
案例 1(键 'tags' 不为空)
{
height = 480;
pid = "a@bsioihf93u420934";
tags = (
{
attributes = {
mood = {
confidence = 42;
value = happy;
};
smiling = {
confidence = 52;
value = false;
};
};
center = {
x = "49.86";
y = "60.52";
};
confirmed = 0;
width = "50.28";
}
);
url = "http://abc/efg/hijk/lmnop.jpg";
width = 360;
}
有时响应如下所示:
案例 2(键“标签”为空)
{
height = 480;
pid = "a@bsioihf93u420934";
tags = (
);
url = "http://abc/efg/hijk/lmnop.jpg";
width = 360;
}
当我在案例 2 中检查 'tags' 是否为空时,它返回 false :
if ([photo objectForKey:@"tags"] == nil)
[photo objectForKey:@"tags"]
检查日志中的实际值返回:
(
)
我还能如何检查“标签”是否为空?