1.进入appstore,然后打分 

NSString *str = [NSString stringWithFormat: 
                         @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa     /wa/viewContentsUserReviews?type=Purple+Software&id=%d", 
                         m_appleID ];  

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

 

2.进入首页

 NSString *str = [NSString stringWithFormat: 

                         @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",
                         m_appleID ];  

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

 


相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-05-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-07
  • 2022-12-23
  • 2022-03-01
  • 2021-12-16
  • 2022-01-28
  • 2022-01-25
相关资源
相似解决方案