How to launch AppStore application with request?
Categories: Apple, iPad, iPhone on Feb.02, 2010
If you will need launch AppStore application with search request – use this example
1 2 3 4 5 |

for getting reviews screen of application, you can will use this example:
1 2 3 4 5 6 7 | NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa"; str = [NSString stringWithFormat:@"%@/wa/viewContentsUserReviews?", str]; str = [NSString stringWithFormat:@"%@type=Purple+Software&id=", str]; // Here is the app id from itunesconnect str = [NSString stringWithFormat:@"%@325180061", str]; [[UIApplication sharedApplication] openURL: [NSURL URLWithString:str]]; |
for getting screen of application:
1 2 3 4 5 6 | NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa"; str = [NSString stringWithFormat:@"%@/wa/viewSoftware?id=", str]; // Here is the app id from itunesconnect str = [NSString stringWithFormat:@"%@325180061", str]; [[UIApplication sharedApplication] openURL: [NSURL URLWithString:str]]; |
Similar posts:
August 17th, 2010 on 12:29 pm
Hi,
Thanks for the nice article.
If the company name is having space then how to implement that.
Ex : In place of “3d4medical” if I want to have “iPhoenix Creations” Then how can I implement that?