Trying to figure out if you can send any sort of response back to an application that calls another application through a custom URL scheme.
For example, the 'client' app does the following:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"myappscheme://"]];
And another app that is registered for myappscheme:// has the following:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
// Do something
return YES;
}
The question is can I get information (Even just a char array) back to the application that called openURL as a response. I realize I could just have the 'client' make it's own custom URL scheme, but I would like to avoid that if possible.