I’m using following code to open URL on a button click from application:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.innotrack.eu///"]];
But when it opens the URL on safari, it animates, Requirement is to prevent this animation. How to achieve it?
We have only the right to command UIApplication to
openURL:and, it seems, we are not authorized to order it not to animate while opening the URL.