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.

I am using following code for opening my test url in app store but it is not getting open in app store and simply nothing is happening

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.com/apps/NinJump"]];

I have also tried

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/NinJump"]];

still it is not opening in app store, i'm using simple code as follows.

@implementation ViewController


- (void)viewDidLoad {

    [super viewDidLoad];
   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/NinJump"]];

}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

@end
share|improve this question

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.