If you will need launch AppStore application with search request – use this example

1
2
3
4
5
NSString *str = @"itms-apps://ax.search.itunes.apple.com";
    str = [NSString stringWithFormat:@"%@/WebObjects/MZSearch.woa/wa/search?media=software&term=", str]
     str = [NSString stringWithFormat:@"%@3d4medical", str];
     
     [[UIApplication sharedApplication] openURL: [NSURL URLWithString:str]];

How to launch AppStore application with request?

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&>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?>NSURL URLWithString:str]];

相关文章:

  • 2021-04-02
  • 2021-06-25
  • 2021-08-02
  • 2022-12-23
  • 2021-12-08
  • 2021-11-23
  • 2021-11-07
  • 2022-12-23
猜你喜欢
  • 2021-12-11
  • 2022-12-23
  • 2021-10-13
  • 2022-12-23
  • 2022-01-05
  • 2022-12-23
  • 2021-09-08
相关资源
相似解决方案