我可以更改NSDictionary的密钥吗?

编程入门 行业动态 更新时间:2024-10-28 17:16:05
本文介绍了我可以更改NSDictionary的密钥吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个NSDictionary对象,该对象由NSMutableString实例填充其键和对象.我已经能够通过使用setString:方法更改原始的NSMutableString来更改密钥.但是,无论最初用于设置密钥的字符串内容如何,​​它们的密钥都保持不变.

I have an NSDictionary object that is populated by instances of NSMutableString for its keys and objects. I have been able to change the key by changing the original NSMutableString with the setString: method. They key however remains the same regardless of the contents of the string used to set the key initially.

我的问题是,是否可以防止更改密钥,这意味着除非我将其删除并在字典中添加另一个密钥,否则密钥将始终是相同的?

My question is, is the key protected from being changed meaning it will always be the same unless I remove it and add another to the dictionary?

谢谢.

推荐答案

设置项目时,键是-copy键,因此以后再进行更改都是无用的.

The keys are -copy'd when the items are set, so you can't changing it afterwards is useless.

将条目添加到字典的方法(无论是作为初始化的一部分(对于所有字典)还是在修改过程中(对于可变字典)-复制每个键参数(键必须符合NSCopying协议)并将副本添加到字典.每个对应的值对象都会收到一条保留消息,以确保在字典通过它之前不会被释放.

Methods that add entries to dictionaries—whether as part of initialization (for all dictionaries) or during modification (for mutable dictionaries)—copy each key argument (keys must conform to the NSCopying protocol) and add the copies to the dictionary. Each corresponding value object receives a retain message to ensure that it won’t be deallocated before the dictionary is through with it.

您可以将CFDictionary与kCFTypeDictionaryKeyCallBacks一起使用,或仅替换以下项目:

You could use CFDictionary with kCFTypeDictionaryKeyCallBacks, or just replace the item:

id value = [dictionary objectWithKey:oldKey]; [dictionary setObject:value withKey:newKey]; [dictionary removeObjectForKey:oldKey];

更多推荐

我可以更改NSDictionary的密钥吗?

本文发布于:2023-10-22 20:02:26,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1518561.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:密钥   NSDictionary

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!