I am developing an application for OSX and have to handle custom URL handling in my application
<a href="openApp:abc@xyz.com">Open My profile!</a>
While Application is Running I am able to get event inside
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent{
}
But when Application not running : it did Come to AppDidFinishedLaunching and i am not able to detect whether its invoked normally or by Custom URL ,
Is there any way to detect while App Launching ?
Thanks in advance