gpt4 book ai didi

iphone - 检查字典中是否存在标签

转载 作者:行者123 更新时间:2023-12-03 21:07:17 25 4
gpt4 key购买 nike

检查字典中是否缺少标签的正确方法是什么。

例如:

self.anArray = [dict objectForKey:@"Names"];

如果 dict 字典中有名为“Names”的项目,则获取一项。

是否有一种方便的方法来检查字典中是否存在“Names”。

非常感谢,-代码

最佳答案

只需检查 -objectForKey: 是否返回 nil。

id res = [dict objectForKey:@"Names"];
if (res == nil)
NSLog(@"Does not have Names");
else
self.anArray = res;

由于 Objective-C 容器不能容纳 nil,因此如果 -objectForKey: 返回 nil,则一定是对应的 key 不存在。

关于iphone - 检查字典中是否存在标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5872202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com