This problem keep bugging me. I'm trying to open a simple url http://www.google.com/ with openURL, but the Safari's not showing up. Here's my code :
NSURL *url =[NSURL URLWithString:@"http://www.google.com/"];
NSLog(@"play !!");
BOOL b = [[UIApplication sharedApplication]openURL:url];
if(b)
{
NSLog(@"IN !!");
}
else
{
NSLog(@"%@%@",@"Failed to open url:",[url description]);
}
I tried these in my other app with the same code, it succeed to open a Safari. But in this app I currently working on, I don't know why, Safari won't launch.
It always shows "Failed to open url" in the console. I tried these links too : UIApplication openUrl not working with formatted NSString
and it's still not working.
Is there any flag or settings that must be turned on ? Any hint would be appreciated.
Update: I use multiple view controllers using UITabBar controller, I have 5 root view controllers in UITabbar. Does it make any difference? I really stuck in here.