What's the link to my app on App Store? I want to input only the App ID.

[[UIApplication sharedApplication]
 openURL:[NSURL URLWithString:@"???"]];
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
NSString *idString = @"380886386";
NSString *countrtyString = @"us";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://itunes.apple.com/%@/app/id%@?mt=8", countrtyString, idString]]];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.