美文网首页
iOS应用内跳转到系统设置页面

iOS应用内跳转到系统设置页面

作者: 00after | 来源:发表于2021-07-12 15:27 被阅读0次

    iOS应用内跳转到系统设置页面
    https://www.jianshu.com/p/5d82fb0c4051

    NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
    if (@available(iOS 10.0, *)) {
        [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
    }else {
        [[UIApplication sharedApplication] openURL:url];
    }
    

    相关文章

      网友评论

          本文标题:iOS应用内跳转到系统设置页面

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