|
|
%!s(int64=8) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| HeapInspector | %!s(int64=8) %!d(string=hai) anos | |
| LICENSE.md | %!s(int64=8) %!d(string=hai) anos | |
| README.md | %!s(int64=8) %!d(string=hai) anos | |
HeapInspector is an iOS debug tool that monitors the memory heap in your app. You can discover memory leaks, no longer needed living objects and more issues directly on your device without ever starting Instruments.
Basically you can inspect the entire heap and see all living objects of your iOS app.
To be more precise you can record the heap for a specific part of the app. For instance when navigating through the menu. Like in Apple's Instruments the snapshot compares the heap before you started recording. For instance you can start the snapshot before you push a new UIViewController onto your UINavigationController stack and stop after popping the UIViewController.
With HeapInspector and heap snapshots you can identify:
UIImageHeapInspector gives you detailed information for the living objects:
Since ARC has been introduced we don't need to manage the retain & release anymore. ARC is very powerful and makes Objective C more stable. ARC decreased the number of crashes and improves the memory footprint.
ARC is technically doing a powerful job. It knows when to retain, autorelease and release.
But ARC doesn't think about the overall architecture how to design for low memory usage. You should be aware that you can still do a lot of things wrong with your memory (even with ARC). You can still get memory pressures or peaks with ARC.
strong property lifetime qualifier can be misused (i.e. holding an object twice and longer than needed.)@autoreleasepool)staticAnd that's why we introduced HeapInspector to find those issues.
HeapInspector runs with Objective C and Swift via CocoaPods
Just add the HeapInspector to your Podfile.
pod 'HeapInspector'
For Swift:
use_frameworks!
platform :ios, '8.0'
pod "HeapInspector"
and run pod install afterwards.
Download the repository into your project via git or just as zip.
Drag it the HeapInspector folder into your Xcode project. See following image.
Disable ARC for NSObject+HeapInspector.m by adding -fno-objc-arc to XCode's Build Phases -> Compile Source. See example images here: Drag and disable ARC
Make sure to import the header file
Objective C
#import "HINSPDebug.h"
Swift
import HeapInspector
Just run the following to start HeapInspector in a separated debug window. The window can be moved on your screen in order to reach all your UI elements. The left circle button starts / stops the memory heap snapshot. See demo above.
Objective C
[HINSPDebug startWithClassPrefix:@"RM"];
Swift
HINSPDebug.startWithClassPrefix("RM")
The prefix can be nil. We recommend to use a specific class prefix or even better a real class like UIImageView.
Or just run start to record all NSObject subclasses.
Objective C
[HINSPDebug start];
Swift
HINSPDebug.start()
Stopping and removing the inspector's window goes with
Objective C
[HINSPDebug stop];
Swift
HINSPDebug.stop()
Just call the start/stop methods at app launch or via your custom button.
HeapInspector can also record the backtrace for each object that received an alloc, retain, release or dealloc.
Notice: This has a large performance impact. Use this only with very specific recorded classes or small apps.
Start the backtrace with
Objective C
[HINSPDebug recordBacktraces:YES];
Swift
HINSPDebug.recordBacktraces(true)
HeapInspector comes with an example project. There you will see a lot of mistakes made with the memory design.
strong delegate propertiesNSTimer that is not being invalidated properlystrong property for the UIViewController that is pushed onto the UINavigationController stack