作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 myClass.h 中,我有
@property (copy, atomic) NSMutableDictionary *thisParticularWordList;
在 myClass.m 中,我按如下方式填充 thisParticularWordList:
theSubview.thisParticularWordList = [NSMutableDictionary dictionaryWithDictionary: someDictionary];
在我看到的 xcode 的变量 View 中,确实填充了这个实例的属性。
在我的代码的其他地方,我尝试这样做:
[self.thisParticularWordList removeObjectForKey:self.theKey];
但不知何故,self.thisParticularWordList 变成了一个不可改变的 NSDictionary。
我做错了什么?
最佳答案
这是因为您的属性的 copy
属性。看看this answer .
一种解决方案是使属性strong
,然后在分配它时,您可以执行self.yourProperty = [yourDictionary mutableCopy];
。
甚至 [NSMutableDictionary dictionaryWithDictionary: someDictionary];
因为这也会创建一个新字典。
演示修复的完整代码示例:
MyClass.h
@property (strong, atomic) NSMutableDictionary *thisParticularWordList;
MyClass.m
theSubview.thisParticularWordList = [NSMutableDictionary dictionaryWithDictionary: someDictionary];
然后这将在分配后工作:
[self.thisParticularWordList removeObjectForKey:self.theKey];
关于ios - NSMutableDictionary 是不可变的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36006484/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!