NSMutableDictionary 检索内容
我有一个 NSMUtableDictionary,它保存一个包含两个对象的键,另一个包含一个对象的键。我如何从两个密钥中检索内容。任何帮助表示赞赏。
这就是我在日志中的内容。个人车辆字典:{ 43 = ( “临时对象1”, “临时对象2” ); 56 = ( “临时对象3” ); 。
我想分别从两个对象中检索键 43 的数据并分别检索键 56 的数据
谢谢
I have a NSMUtableDictionary which holds an key with two objects in it, and another key with one object in it. How I retrieve the contents from both the keys. Any help is appreciated.
This is what i have in log. personalvehicleDict:{
43 = (
"TempObject1",
"TempObject2"
);
56 = (
"TempObject3"
);
}
I want to retrieve data from both objects separately for key 43 and retrieve data for key 56 separately.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜测字典中的对象是 NSArray (或 NSMutableArray)对吗?
如果是的话,那么类似这样的事情应该可以解决问题:
Am I right in guessing that the objects in the dictionary are NSArray (or NSMutableArray)?
If yes, then something like this should do the trick: