• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

c# - 如何在 ios 中以编程方式打开设置

[复制链接]
菜鸟教程小白 发表于 2022-12-13 10:51:46 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在搜索 How to open settings programmatically 的 Xamarin 实现

Vito-ziv为客观 C 回答了这个问题 - 在 Xamarin Studio 中的 C# for iOS 中执行此操作的正确方法是什么?



Best Answer-推荐答案


对于当前设备,这只能在 ios8 中实现(在撰写本文时 ios9 不可用)(显然,在 ios5 之前它曾经是可能的 - 参见 this blog post 中的 Adrian Stevens at Xamarin - 向他大声喊出这个答案的灵感)

要在 ios8 中执行此操作,我是这样做的:

var settingsString = UIKit.UIApplication.OpenSettingsUrlString;
            var url = new NSUrl (settingsString);
            UIApplication.SharedApplication.OpenUrl (url);

上面的代码是通过 UIAlertView 点击中的委托(delegate)类从点击事件中调用的。

因为我也支持 ios7,所以为了处理 ios7 设备,我这样做了,在决定是否呈现 View Controller 时调用 HandleLocationAuthorisation 方法 - ios8 及更高版本的用户可以选择直接进入设置,而ios7的用户必须手动去那里。

下面的这个例子是检查位置服务,但是可以很容易地改变一些小改动来检查其他类型的设置。

public bool HandleLocationAuthorisation () 
{

    if (CLLocationManager.Status == CLAuthorizationStatus.AuthorizedAlways) {
        return true;
    } else {
        UIAlertView uiAlert;  


        //iOS 8 and above can redirect to settings from within the app
        if (UIDevice.CurrentDevice.CheckSystemVersion(8,0)) {
            uiAlert = new UIAlertView 
                ("Location Services Required", 
                    "",
                    null,
                    "Return To App","Open Settings");

            uiAlert.Delegate = new OpenSettingsFromUiAlertViewDelegate();
            uiAlert.Message = "Authorisation to use your location is required to use this feature of the app.";

        //ios7 and below has to go there manually
        } else {
            uiAlert = new UIAlertView 
                ("Location Services Required", 
                    "Authorisation to use your location is required to use this feature of the app. To use this feature please go to the settings app and enable location services",
                    null,
                    "Ok");
        }
        uiAlert.Show ();
        return false;
    }

}

为了完整起见,这里是上面引用的事件委托(delegate)的代码:

public class OpenSettingsFromUiAlertViewDelegate : UIAlertViewDelegate {

public override void Clicked (UIAlertView alertview, nint buttonIndex)
{

    if (buttonIndex == 1) {
        var settingsString = UIKit.UIApplication.OpenSettingsUrlString;
        var url = new NSUrl (settingsString);
        UIApplication.SharedApplication.OpenUrl (url);
    }
  }
}

关于c# - 如何在 ios 中以编程方式打开设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30439829/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap