本文主要是介绍class _ContiguousArrayStorage deallocated with non-zero retain count,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Xcode报错 : Object 0x11c614000 of class _ContiguousArrayStorage deallocated with non-zero retain count 2. This object's deinit, or something called from it, may have created a strong reference to self which outlived deinit, resulting in a dangling reference.
分析报错原因:Swift中多线程并发读写同一个数组是不安全的,没有进行同步,造成数组的不安全操作,进而引起crash.
解决办法:将系统数组封装成安全数组ThreadSafeArray来进行读写操作,怎么封装呢?
用队列来做, DispatchQueue,为什么用它?数组的读写操作我们可以看作是一个个事件,这些事件如果放到队列里面,就可以利用队列的同步和异步来达到互斥访问数组的目标,那么问题来了,是使用串行队列还是并行队列呢?串行队列就是指事件按照放入到队列的先后顺序来先后执行,先放进去的事件先执行,后放进去的事件后执行
这篇关于class _ContiguousArrayStorage deallocated with non-zero retain count的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!