I have an app that works in background successfully. It also has a working URL scheme set up and running.
Now I need to implement the following scenario - after 5 seconds in background I want the app to open itself up - and make it a foreground one.
The public method doesn't seem to work from the app:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"shdServer://"]];
Is there any private API to return to the app from the background? Or is it impossible at all on iOS?
Publication on the AppStore is not needed