When I want to open App2 in App1, I can do like this:
NSURL * myURL_APP_A = [NSURL URLWithString:@"openurl1://"];
if ([[UIApplication sharedApplication] canOpenURL:myURL_APP_A]) {
[[UIApplication sharedApplication] openURL:myURL_APP_A];
}
But when I want to open an App in a keyboard Extension, [UIApplication sharedApplication] cannot be used.So how can I make it?
Thanks for your help!
You can try this method :