iphone - 为什么使用 NSMutableDictionary 会导致 NSNotificationCenter 崩溃?
<p><p>当使用 NSNotificationCenter 发布通知时,是否有任何理由为什么传入 NSMutableDictionary 而不是 NSDictionary 作为 userInfo 可能会导致崩溃?</p>
<pre><code>- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
</code></pre>
<p>我看到以下崩溃日志:</p>
<pre><code> Exception Type:SIGSEGV
Exception Codes: SEGV_ACCERR at 0xffffffffe0000008
0 libobjc.A.dylib 0x31516fbc objc_msgSend + 16
1 Foundation 0x3195b50f __57-_block_invoke_0 + 19
2 CoreFoundation 0x37a02577 ___CFXNotificationPost_block_invoke_0 + 71
3 CoreFoundation 0x3798e0cf _CFXNotificationPost + 1407
4 Foundation 0x318cf3fb - + 67
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您的观察者似乎正在使应用程序崩溃。你在 dealloc 之前把它从观察者列表中删除了吗?</p></p>
<p style="font-size: 20px;">关于iphone - 为什么使用 NSMutableDictionary 会导致 NSNotificationCenter 崩溃?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8901982/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8901982/
</a>
</p>
页:
[1]