如何更新 NSMutableDictionary?
我有一个 NSMutableDictionary。
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
我必须更新该字典中的一个元素。我怎样才能做到这一点?
I have an NSMutableDictionary.
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
I have to update an element in that dictionary. How i can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅 API 这里
首先使用 检索对象
稍后,您可以使用以下命令将它们重新设置:
Please refer to the API here
First retrieve the objects using
Later, you can set them back using:
字典只允许每个键有一个对象,因此如果您使用“为键设置对象”,它将更新当前对象
dictionary only allows you to have one objects for each key so if you use "set object for key" it will update the current one
NSMutableDictionary 的方法 addEntriesFromDictionary。
如果两个字典包含相同的键,则发送接收字典的该键的先前值对象释放消息,新的值对象取代它的位置。
NSMutableDictionary's method addEntriesFromDictionary.
If both dictionaries contain the same key, the receiving dictionary’s previous value object for that key is sent a release message, and the new value object takes its place.