Tool: View The Memory Heap In App To Avoid Any Memory Issues

When ARC was introduced in Objective-C memory management become much less of an issue, but you can still create issues especially with holding objects longer than needed.

Here’s an open source tool that allows you to monitor the memory heap from within your app and quickly identify any memory issues called HeapInspector from tapwork.

With heap inspector you can get data from running objects that includes the reference history, detailed information, and screenshots.

You can also take snapshots to compare the heap before you started recording so you can quickly identify any leaking objects, unneeded objects that are still alive and more.

Here’s an animation from the readme:
HeapInspector

You can find HeapInspector-For-iOS on Github here.

A nice tool for easily identifying any potential memory issues.

Original article: Tool: View The Memory Heap In App To Avoid Any Memory Issues

©2014 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.

Leave a Reply

Your email address will not be published. Required fields are marked *