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.

link|improve this question
I've decided to rebuild the app using new project. And amazingly it worked. Maybe it's something related to XCode 4.0- XCode 4.2 migration. – mamaz Jan 10 at 8:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.