愚蠢的问题警告......我可能会被剥夺睡眠,但我似乎无法弄清楚这一点。
'current' 是一个 NSDictionary
if ([current valueForKey:@"name"] != nil)
{
NSLog(@"here %@", [current valueForKey:@"name"]);
}
这打印
here John
here Sam
here <null>
here <null>
here Billy
'if xx != nil' 不应该阻止空值吗?'name' 存在于我的字典中,但 name 的值可能为空。