Skip to content

Instantly share code, notes, and snippets.

@brettkelly
Created May 15, 2012 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brettkelly/2706011 to your computer and use it in GitHub Desktop.
Save brettkelly/2706011 to your computer and use it in GitHub Desktop.
handleOpenURL implementation
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
// delegate to the Evernote session singleton
if ([[EvernoteSession sharedSession] handleOpenURL:url]) {
return YES;
}
return NO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment