美文网首页
iOS跳转app store商店等系统应用

iOS跳转app store商店等系统应用

作者: iOS_tree | 来源:发表于2023-11-12 21:37 被阅读0次

    在一些情况或者需求,比如跳转app store更新app版本、对app进行评论等需要跳转app store商店,可以使用下面的代码进行跳转
    app跳转app store方法,idxxxx中的xxx为app在app store的app id

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/idxxxxxx"] options:@{} completionHandler:^(BOOL success) {
                        
            }];
    

    跳转系统浏览器safari,打开指定网页

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.baidu.com"] options:@{} completionHandler:nil]
    

    相关文章

      网友评论

          本文标题:iOS跳转app store商店等系统应用

          本文链接:https://www.haomeiwen.com/subject/ldyrwdtx.html