Hey there.
I am trying to check for the existence of a key in a plist file in xcode. My plist file has this structure.
Root (Dictionary)
+- Parent1 (Dictionary)
- Key1 (Boolean)
- Key2 (Boolean)
- Key3 (Boolean)
- Key4 (Boolean)
+- Parent2 (Dictionary)
- Key1 (Boolean)
- Key2 (Boolean)
Now i need to check if Key2 exists in Parent1 or not? I checked NSDictionary but couldnt get how to do this.
Any suggestions on how to do this?