I would like to provide a link to all the apps of a single author/company on the App Store from my iPhone app.
Let\'s take Ngmoco for instance. Clicking on the follo
Here's what I found works for me, redirecting from within an iPhone app. This goes directly to the App Store app:
NSString *iTunesLink = @"itms-apps://itunes.com/apps/companyname/";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
Simply substitute in the name of the app developer for "companyname".
The answer by @JohnFricker worked best for me. Although it's worth noting that I had to remove all spaces and punctuation from the developer name. I tried it with spaces removed but not punctuation and it still didn't work.
NSString *str = @"itms-apps://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=glbasic";
[[UIApplication sharedApplication] openURL: [NSURL URLWithString:str]];
That seems to work for me!!
simply go to itunes than click on the name of your company , copy and paste it whereever you want . i think previous answers were usefull for previous versions of itunes