1

Possible Duplicate:
How to link to apps on the app store

I want to link all my apps on my main app if that makes sense So i have a button, when the user touches it

they will be directed to this link:

http://itunes.apple.com/gb/app/idubstep/id430260356?mt=8

However

 -(IBAction)goReviewTwo:(id)sender
{
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/gb/artist/lifevision-studios/id415139916"]];
}

This always say Request cannot be complete. So is there a special link i need to use for it?

Community
  • 1
  • 1
user731501
  • 19
  • 1
  • 2

1 Answers1

2

There are several threads answering this question. Here is one: thread

Note the comment that suggests using itms:// instead of http://

Community
  • 1
  • 1
Dancreek
  • 9,524
  • 1
  • 31
  • 34