Created
May 15, 2012 23:38
-
-
Save brettkelly/2706011 to your computer and use it in GitHub Desktop.
handleOpenURL implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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