Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这些是来自 Zombie Profiling 的屏幕截图: 我怎么知道哪个对象更早被释放,哪个对象又被释放到池排水管中?
我正在使用 ARC,@autoreleasepool {}在某些方法中
@autoreleasepool {}
请检查您的名为 BackgroundSync 的类,其中包含发布数和分配数。记住没有释放的对象应该等于没有分配的对象。
1)您可能在 dealloc 中释放了一些对象。2)您可能在上述工具列表中列出的特定功能中释放了一些对象,因此请先检查它们。