找出一个对象是否存在于 plist 中?
如果我有一个已放入数组的 plist,看起来像这样
-Root
-Item 0 Dictionary
Name String Henry
Kids Array
-Item 0 String Lindy
-Item 1 String Paul
-Item 1 Dictionary
Name String Janet
Pets Array
-Item 0 String Snoopy
-Item 1 String Pebbles
如何找出每个人是否有孩子或宠物?
If I have a plist which I have put into and array, which looks something like this
-Root
-Item 0 Dictionary
Name String Henry
Kids Array
-Item 0 String Lindy
-Item 1 String Paul
-Item 1 Dictionary
Name String Janet
Pets Array
-Item 0 String Snoopy
-Item 1 String Pebbles
How can find out whether each person has kids or pets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 valueForKey:key 查询 NSDictionary
//如果键值不存在,则返回nil。
You can query NSDictionary with valueForKey:key
//returns nil, if valued for key is not present.