我需要检查字典是否有钥匙。如何?


当前回答

if ([mydict objectForKey:@"mykey"]) {
    // key exists.
}
else
{
    // ...
}

其他回答

如果键不存在,objectForKey将返回nil。

在NSDictionary中检查key是否存在:

if([dictionary objectForKey:@"Replace your key here"] != nil)
    NSLog(@"Key Exists");
else
    NSLog(@"Key not Exists");
if ([mydict objectForKey:@"mykey"]) {
    // key exists.
}
else
{
    // ...
}

使用Swift,它将是:

if myDic[KEY] != nil {
    // key exists
}

我喜欢费尔南德斯的回答,尽管你问了两次obj。

这也应该(或多或少与马丁的A相同)。

id obj;

if ((obj=[dict objectForKey:@"blah"])) {
   // use obj
} else {
   // Do something else like creating the obj and add the kv pair to the dict
}

马丁的回答和这个答案都适用于iPad2 iOS 5.0.1 9A405