Skip to content

Instantly share code, notes, and snippets.

@PanosJee
Created January 23, 2012 22:28
Show Gist options
  • Save PanosJee/1665853 to your computer and use it in GitHub Desktop.
Save PanosJee/1665853 to your computer and use it in GitHub Desktop.
Set up BugSense
#import <BugSense-iOS/BugSenseCrashController.h>
// ...
- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//...
NSDictionary *myStuff = [NSDictionary dictionaryWithObjectsAndKeys:@"myObject", @"myKey", nil];
[BugSenseCrashController sharedInstanceWithBugSenseAPIKey:@"<Your BugSense API Key>"
userDictionary:myStuff
sendImmediately:NO];
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment