Objective-C语言检查NSDictionary是否已经有密钥

示例

目标c:

   //这是您开始使用的字典。 
 NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@"name1", @"Sam",@"name2", @"Sanju",nil];

//check if the dictionary contains the key you are going to modify.  In this example, @"Sam"
if (dict[@"name1"] != nil) {
    //密钥名1有一个条目       
}
else {
    //没有名称1的条目       
}