iPhone sdk - open app store to specific app?

后端 未结 6 608
鱼传尺愫
鱼传尺愫 2020-12-16 10:32

Is there a way to open the app store to a specific application? I tried using something like the following:

[[UIApplication sharedApplication] openURL: [NSUR         


        
6条回答
  •  醉梦人生
    2020-12-16 11:12

    Another simple way is:

    [[UIApplication sharedApplication] openURL: [NSURL URLWithString:@"itms-apps://itunes.com/app/YourAppNameWithoutSpaces"]];
    

    This is very clean

提交回复
热议问题