TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Sep 2016 |
Maintained by Yourtion Guo.
Save NSLog() to file and send email to developer
The preferred way of installation is via CocoaPods. Just add
pod 'SuperLogger'
and run pod install. It will install the most recent version of SuperLogger.
Import the framework header on AppDelegate.m:
#import "SuperLogger.h"
Init and set email info:
SuperLogger *logger = [SuperLogger sharedInstance];
// Start NSLogToDocument
[logger redirectNSLogToDocumentFolder];
// Set Email info
logger.mailTitle = @"SuperLoggerDemo Logfile";
logger.mailContect = @"This is the SuperLoggerDemo Logfile";
logger.mailRecipients = @[@"[email protected]"];
That's it! Have fun with SuperLogger!
Show the Loglist by presentViewController "[[SuperLogger sharedInstance] getListView]"
[self presentViewController:[[SuperLogger sharedInstance] getListView] animated:YES completion:nil];