├── .gitignore ├── LICENSE ├── MSLeakHunter+Private.h ├── MSLeakHunter.h ├── MSLeakHunter.m ├── MSLeakHunterRetainBreakpointsHelper.h ├── MSLeakHunterRetainBreakpointsHelper.m ├── MSViewControllerLeakHunter.h ├── MSViewControllerLeakHunter.m ├── MSViewLeakHunter.h ├── MSViewLeakHunter.m ├── MSZombieHunter.h ├── MSZombieHunter.m ├── README.md └── Sample Project └── MSVCLeakHunterSampleProject ├── MSVCLeakHunterSampleProject.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcdebugger │ └── Breakpoints.xcbkptlist └── MSVCLeakHunterSampleProject ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── MSAppDelegate.h ├── MSAppDelegate.m ├── MSLeakingVC.h ├── MSLeakingVC.m ├── MSLeakingVC.xib ├── MSMenuVC.h ├── MSMenuVC.m ├── MSMenuVC.xib ├── MSOKVC.h ├── MSOKVC.m ├── MSOKVC.xib ├── MSVCLeakHunterSampleProject-Info.plist ├── MSVCLeakHunterSampleProject-Prefix.pch ├── en.lproj └── InfoPlist.strings └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/LICENSE -------------------------------------------------------------------------------- /MSLeakHunter+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSLeakHunter+Private.h -------------------------------------------------------------------------------- /MSLeakHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSLeakHunter.h -------------------------------------------------------------------------------- /MSLeakHunter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSLeakHunter.m -------------------------------------------------------------------------------- /MSLeakHunterRetainBreakpointsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSLeakHunterRetainBreakpointsHelper.h -------------------------------------------------------------------------------- /MSLeakHunterRetainBreakpointsHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSLeakHunterRetainBreakpointsHelper.m -------------------------------------------------------------------------------- /MSViewControllerLeakHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSViewControllerLeakHunter.h -------------------------------------------------------------------------------- /MSViewControllerLeakHunter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSViewControllerLeakHunter.m -------------------------------------------------------------------------------- /MSViewLeakHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSViewLeakHunter.h -------------------------------------------------------------------------------- /MSViewLeakHunter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSViewLeakHunter.m -------------------------------------------------------------------------------- /MSZombieHunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSZombieHunter.h -------------------------------------------------------------------------------- /MSZombieHunter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/MSZombieHunter.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/README.md -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject.xcodeproj/xcshareddata/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject.xcodeproj/xcshareddata/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/Default-568h@2x.png -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/Default.png -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/Default@2x.png -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSAppDelegate.h -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSAppDelegate.m -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSLeakingVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSLeakingVC.h -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSLeakingVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSLeakingVC.m -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSLeakingVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSLeakingVC.xib -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSMenuVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSMenuVC.h -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSMenuVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSMenuVC.m -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSMenuVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSMenuVC.xib -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSOKVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSOKVC.h -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSOKVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSOKVC.m -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSOKVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSOKVC.xib -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject-Info.plist -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject-Prefix.pch -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsnacks/MSLeakHunter/HEAD/Sample Project/MSVCLeakHunterSampleProject/MSVCLeakHunterSampleProject/main.m --------------------------------------------------------------------------------