我可以在UI对话框中显示wifi接入点列表吗?允许用户使用swift 3从我的应用程序中切换wifi设置?
OR
是否可以在不支持全屏的提示对话框中打开wifi设置?
答案 0 :(得分:0)
没有。 Check this answer. It may help you
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"prefs:root=WIFI"]]) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];
} else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"App-Prefs:root=WIFI"]];
}
if UIApplication.shared.canOpenURL(URL(string: "prefs:root=WIFI")) {
UIApplication.shared.openURL(URL(string: "prefs:root=WIFI"))
}
else {
UIApplication.shared.openURL(URL(string: "App-Prefs:root=WIFI"))
}