| 1234567891011121314151617181920212223 |
- //
- // RMClassDumpTableViewController.h
- // HeapInspectorExample
- //
- // Created by Christian Menschel on 01.09.14.
- // Copyright (c) 2014 tapwork. All rights reserved.
- //
- #import "HINSPTableViewController.h"
- typedef NS_ENUM(NSUInteger, RMClassDumpType) {
- RMClassDumpMethods,
- RMClassDumpProperties,
- RMClassDumpIvar,
- RMClassDumpClasses
- };
- @interface HINSPClassDumpTableViewController : HINSPTableViewController
- - (instancetype)initWithObject:(id)object type:(RMClassDumpType)type;
- @end
|