获取 NSDictionary 的所有键作为 NSArray
是否可以从特定的 NSDictionary 中获取所有键作为单独的 NSArray ?
Is it possible to get all the keys from a specific NSDictionary
as a seperate NSArray
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一般情况
下,如果您想知道某个特定类是否有特定方法,请查找 Apple 自己的文档。在这种情况下,请参阅 NSDictionary 类参考。 遍历所有方法。这样你会发现许多有用的方法。
Just use
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.
是的,这是可能的。使用 allKeys方法:
Yes it's possible. Use allKeys method:
如果您想获取所有键和值,请执行以下操作:
And if you want to get all keys and values, here's what you do: