1. 程式人生 > >[iOS] Check key exists in NSDictionary in Objective-C

[iOS] Check key exists in NSDictionary in Objective-C

把 json 轉成 dictionary 後,想檢檢視看某一個 key 是不是存在。

objectForKey will return nil if a key doesn’t exist.

ex:

if([obj valueForKey:@"SetEntries"] != nil) {
    // The key existed...

}