ios - 发送到不可变对象(immutable对象)的变异方法,仅发生在物理设备上
<p><p>我已经尝试了所有我能想到的方法,以及修复此错误的所有建议。该应用程序在 iOS 模拟器上运行良好,但在物理设备(我的 iPhone 5)上崩溃。 </p>
<p>这是我得到的错误:</p>
<pre><code>2015-01-23 16:26:43.232 Kyle's App *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-: mutating method sent to immutable object'
</code></pre>
<p>该类的属性声明为:</p>
<pre><code>@property (strong, nonatomic) NSUserDefaults *defaults;
@property (strong, nonatomic) NSMutableArray *classes;
@property (strong, nonatomic) NSMutableArray *foundClasses;
</code></pre>
<p>所有这些都被初始化为可变对象,除了用户默认值
以及发生错误的方法:</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSMutableArray *notes = [ initWithArray:self.classes[@"notes"]];
mutableCopy]];
self.classes[@"notes"] = ;//problem
;
;
forKey:@"Current Note"];
;
;
;
}
</code></pre>
<p>产生错误的行是 <code>self.classes[@"notes"] = ;//problem</code></p>
<p>非常感谢所有帮助,如果有任何问题,我深表歉意,因为这是我第一次在 StackOverflow 上发帖。如果您需要更多信息,请告诉我。</p>
<p>谢谢。</p>
<p>更新 - 我有初始化字典的代码,但我不确定它是如何仍然不可变的。</p>
<pre><code>[self.classes addObject:(NSMutableDictionary *)@{
@"title": textField.text,
@"notes": [ init]//(NSMutableArray *)@[]
}];
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>确保将 <code>NSDictionary</code> 的可变版本(NSMutableDictionary、NSCache 等)放入数组 <code>classes</code>。</p>
<pre><code>];
</code></pre>
<hr/>
<p><strong>编辑</strong>:将不可变对象(immutable对象)转换为其可变等效对象不是正确的方法。您应该调用 <code></code> 而不是强制转换。</p>
<pre><code>[self.classes addObject:[@{
@"title": textField.text,
@"notes": [ init]} mutableCopy]];
</code></pre></p>
<p style="font-size: 20px;">关于ios - 发送到不可变对象(immutable对象)的变异方法,仅发生在物理设备上,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28122749/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28122749/
</a>
</p>
页:
[1]