保存部分 NSDictionary

发布于 2024-09-26 23:55:01 字数 149 浏览 5 评论 0原文

我有一个带有 NSStringNSArrayNSDictionary

我必须仅将 NSArray 保存在变量中而不知道钥匙。

这可能吗?

I have a NSDictionary with a NSString and NSArray

I have to save only the NSArray in a variable without knowing the key.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随梦而飞# 2024-10-03 23:55:01

如果我理解正确的话,你有一个包含 NSString 和 NSArray 的字典,并且你只想提取 NSArray,而不知道键是什么。

一种方法是通过快速枚举来查看字典:

NSString *key;
for(key in someDictionary){
     id someObject = [someDictionary objectForKey: key];
}

然后查看对象以查看哪个是 NSArray:(

    if ([someObject isKindOfClass:[NSArray class]]) {
        // do something with the array
    }

强制性警告:显式检查对象的类通常是设计有缺陷的标志。在大多数情况下,您应该检查行为(-respondsToSelector),而不是类标识)

If I'm understanding you correctly, you have a dictionary that contains both an NSString and an NSArray, and you want to extract just the NSArray, without knowing what the key is.

One way to do that is to look through the dictionary with fast enumeration:

NSString *key;
for(key in someDictionary){
     id someObject = [someDictionary objectForKey: key];
}

and then look at the objects to see which one is an NSArray:

    if ([someObject isKindOfClass:[NSArray class]]) {
        // do something with the array
    }

(obligatory warning: explicitly checking an object's class is often a sign of a flawed design. In most cases, you should be checking for behavior (-respondsToSelector), not class identity)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文