I am able to open another application from my application using URL Schemes
on a button click or app in foreground.
By using the below code.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"urlscheme://"]];
But, I can not open the application if my application from background. I have enabled background fetch - It is woking fine. How can I open the application when background task is running ?