| 12345678910111213141516171819 |
- //
- // RMShowViewController.h
- // HeapInspectorExample
- //
- // Created by Christian Menschel on 30.08.14.
- // Copyright (c) 2014 tapwork. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface HINSPShowViewController : UIViewController
- @property (nonatomic) BOOL shouldShowEditButton; // Default is YES
- - (instancetype)initWithObject:(id)object;
- - (instancetype)initWithDescription:(NSString *)string;
- @end
|