菜鸟教程小白 发表于 2022-12-12 12:41:05

ios - 启用 ARC 的堆增长


                                            <p><p>发现每次运行一种更新数据和 UI 的方法时都会出现堆增长。
这是我在 Inspector 中看到的内容:
<img src="/image/D6eVq.png" alt="enter image description here"/>
每次运行该方法时,都会有大约 1MB 的巨大堆增长。几次通话后应用崩溃。</p>

<p> <img src="/image/5h0ss.png" alt="enter image description here"/> </p>

<p>通过调用堆栈向下找到这个静态函数:
<img src="/image/pl9N8.png" alt="enter image description here"/> </p>

<p> <img src="/image/3dntL.png" alt="enter image description here"/> </p>

<p>在代码中找不到任何内存泄漏。请帮忙。 (ARC 开启)</p>

<p><strong>更新:</strong></p>

<p>所以现在我在该静态方法中使用了一个 NSCalendar 对象,它帮助了一些,但每次运行该方法时仍然有 <strong>1MB 以上</strong>。
<img src="/image/guK44.png" alt="enter image description here"/>
现在 Inspector 显示了许多与代码无关的内存地址。</p>

<p> <img src="/image/f7IVt.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你不需要创建这么多 <code>NSCalendars</code> - 如果你重复使用 <code>autoupdatingCurrentCalendar</code>(例如,将它保存到 <code>GraphController</code> ivar)并且将其传递给 <code>-dateDifferenceFromDate:to:</code>,您可以(实际上)消除日历创建。</p>

<p><strong>更新</strong> </p>

<blockquote>
<p>Can this help with abandoned memory or it&#39;s only improves speed?</p>
</blockquote>

<p>了解此建议有多大帮助的最佳方法是<strong>衡量</strong>。您的屏幕截图表明 ICU 时区(由日历使用)创建是最重的部分。 IDK 在绘制图形时您调用了多少次(即您创建了多少 <code>NSCalendars</code>,或者实现是否通过此 API 共享/缓存信息)……但是您提供的信息让我相信它是'many' - 每次调用 <code>-dateDifferenceFromDate:to:</code> 一个日历。</p>

<p>所以是的,它可以消除(不必要的)重复对象——<code></code> 不会返回单例(您的示例证明了这一点)。</p>

<p>还要注意 <code>NSDateComponents</code> 可能会引用日历实例。</p>

<p>创建日历可能非常耗时(不仅仅是内存)。</p>

<p>另请注意,<code>NSCalendar</code> <em>不是</em>线程安全的。</p>

<p>因此,您的程序可能会不必要地创建大量临时变量。大多数(如果不是全部)内存将“很快”释放,但如果您有很多“计算”,那么您的自动释放池中可能会有大量存款(最终会被耗尽)。您可以创建内部自动释放池来减少这种情况,但使用一个日历可以轻松优化速度和内存。</p>

<p>许多系统 API 会在后台缓存并导致惊人的内存增长,但 IDK 如果这是其中之一。</p>

<p>这篇博文可能也很有趣:<a href="http://www.mikeabdullah.net/NSCalendar_currentCalendar.html" rel="noreferrer noopener nofollow">http://www.mikeabdullah.net/NSCalendar_currentCalendar.html</a> </p>

<p>但实际上,我只是尝试使用一个自动更新日历,然后进行测量。然后你就会知道它对<em>你的</em>实现有多大帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 启用 ARC 的堆增长,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17751399/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17751399/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 启用 ARC 的堆增长