I'm able to open my appStore page a click event on a UIButton that has an IBAction associated, similar this:
- (IBAction) BuyFullAlbum {
NSString *iTunesLink = @"http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=...";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
}
It works fine. Now I need to upgrade my app, and I downloaded a post from a wordpress blog via rss and I want to display the post in a UIWebView. I can show the correct html from the post into the UIWebView, but now I decide to link the appStore to a webLink posted inside a webpage.
Why if I click on the link in the UIWebView, it opens the page of the app's review in the appStore and not the directly link to the appStore? Is this a way to go directly from a link in a web page to the appStore link of an app?