blob: 5dec979483b20288a4c26322fb8a409a5c118717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// SDLConsoleController.h
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "SDLDebugTool.h"
@interface SDLConsoleController : UITableViewController <SDLDebugToolConsole> {
NSMutableArray *messageList;
BOOL atBottom;
NSDateFormatter *dateFormatter;
}
@property (strong, readonly) NSMutableArray *messageList;
- (instancetype)initWithTableView:(UITableView *)tableView;
@end
|