Hi, I'm trying to launch my application from a custom URL, I've already registered it on info.plist URL schemes, on iPhone sdk there's a UIApplication method:
- (BOOL)application
UIApplication *)application handleOpenURL
NSURL *)url
which lets me handle this from AppDelegate, I've been looking for something like this on NSApplication documentation but couldn't find anything.
Actually, my application launches after clicking on the custom url, but I have some code that needs to be executed after application launches and can't figure out how to do this.
Does someone have any idea of how to do this?
thanks!
- (BOOL)application
which lets me handle this from AppDelegate, I've been looking for something like this on NSApplication documentation but couldn't find anything.
Actually, my application launches after clicking on the custom url, but I have some code that needs to be executed after application launches and can't figure out how to do this.
Does someone have any idea of how to do this?
thanks!