获取 NSDictionary 的所有键作为 NSArray

发布于 2024-11-29 09:29:27 字数 50 浏览 1 评论 0原文

是否可以从特定的 NSDictionary 中获取所有键作为单独的 NSArray ?

Is it possible to get all the keys from a specific NSDictionary as a seperate NSArray?

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

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

发布评论

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

评论(3

你没皮卡萌 2024-12-06 09:29:27

一般情况

NSArray*keys=[dict allKeys];

下,如果您想知道某个特定类是否有特定方法,请查找 Apple 自己的文档。在这种情况下,请参阅 NSDictionary 类参考。 遍历所有方法。这样你会发现许多有用的方法。

Just use

NSArray*keys=[dict allKeys];

In general, if you wonder if a specific class has a specific method, look up Apple's own documentation. In this case, see NSDictionary class reference. Go through all the methods. You'll discover many useful methods that way.

纵山崖 2024-12-06 09:29:27

是的,这是可能的。使用 allKeys方法:

NSDictionary *yourDictionary;
NSArray * yourKeys
yourKeys = [yourDictionary allKeys];

Yes it's possible. Use allKeys method:

NSDictionary *yourDictionary;
NSArray * yourKeys
yourKeys = [yourDictionary allKeys];
决绝 2024-12-06 09:29:27

如果您想获取所有键和值,请执行以下操作:

for (NSString *key in dictionary) {
    id value = dictionary[key];
    NSLog(@"Value: %@ for key: %@", value, key);
}

And if you want to get all keys and values, here's what you do:

for (NSString *key in dictionary) {
    id value = dictionary[key];
    NSLog(@"Value: %@ for key: %@", value, key);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文