Skip to content

Instantly share code, notes, and snippets.

@sessionm-docs
Forked from ndurell/ExampleAppDelegate.m
Last active August 29, 2015 14:00
Show Gist options
  • Save sessionm-docs/11046718 to your computer and use it in GitHub Desktop.
Save sessionm-docs/11046718 to your computer and use it in GitHub Desktop.
//
// ExampleAppDelegate.m
// MyApp
//
//
#import "ExampleAppDelegate.h"
#import "SessionM.h"
@implementation ExampleAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//TODO: put your app key in here.
SMStart(@"<YOUR_KEY_HERE>");
return YES;
}
//Other normal application delegate code is ommitted for this example ....
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment