Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|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 '12 at 8:51

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.