菜鸟教程小白 发表于 2022-12-13 05:29:11

ios - UICollectionView 崩溃


                                            <p><p>我有一个 <code>UICollectionView</code>,我使用 <code>reloadItemsAtIndexPaths:@</code> 来更新它。但是,有时,我从 <code>reloadItemsAtIndexPaths:@</code> 中遇到了崩溃。我一直在想原因,但想不出一个。 </p>

<p>有人可以分享一些关于这个的想法吗?例如如何缩小bug范围,添加什么日志消息等以及可能的原因?</p>

<p>轨迹显示:</p>

<pre><code>Crashed: com.apple.main-thread
EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x0000000000000010
Thread : Crashed: com.apple.main-thread
0libobjc.A.dylib                0x0000000192a63bd0 objc_msgSend + 16
1UIKit                        0x000000018714e88c - + 88
2UIKit                        0x000000018714f83c - + 304
3UIKit                        0x0000000186c2877c - + 184
4UIKit                        0x0000000186b1296c - + 76
5UIKit                        0x0000000186c8b17c - + 7780
6MCompass                     0x0000000100052270 reloadItemsAtIndexPaths:
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看来需要加上这个:</p>

<pre><code>- (void)dealloc
{
   collectionView.delegate = nil;
   collectionView.dataSource = nil;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UICollectionView 崩溃,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28710797/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28710797/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UICollectionView 崩溃