EonaCat-Tools/EonaCatTools/Tools/ExceptionsLogger/ExceptionLogger.h

25 lines
603 B
C
Raw Normal View History

2018-12-19 20:42:46 +01:00
//
// ExceptionLogger.h
// Created by EonaCat
// Copyright 2013 EonaCat. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ExceptionLogger : UIViewController <UITextViewDelegate>
{
IBOutlet UINavigationItem *navigationBar;
NSString *path;
IBOutlet UITextView *textView;
}
@property (nonatomic, strong) IBOutlet UINavigationItem *navigationBar;
@property (nonatomic, strong) IBOutlet UITextView *textView;
+(ExceptionLogger*)instance;
-(IBAction)updateLog:(id)sender;
-(IBAction)Clear:(id)sender;
-(void)log:(NSString*)exception;
@end