I'm using the following code:
NSString *customURLString = [NSString stringWithFormat: @"secondApp://?%@", [document fileId]];
NSURL *customURL = [NSURL URLWithString: customURLString];
[[UIApplication sharedApplication] openURL: customURL];
The "Back To firstApp" is not showing up upon successful opening of the secondApp. Is there something I'm missing? Been scouring the internet for this answer, and am trying to make sure that "Back To firstApp" is there.
Has anyone come across this?