zoukankan      html  css  js  c++  java
  • wifi

      在最近做的一个Wi-Fi类的项目,需要实现类似万能钥匙中点击一个Wi-Fi跳转到系统Wi-Fi设置界面的功能。废话我就不多说了,下面就是实现代码了。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    NSString * urlString = @"App-Prefs:root=WIFI";
     
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:urlString]]) {
     
        if ([[UIDevice currentDevice].systemVersion doubleValue] >= 10.0) {
     
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString] options:@{} completionHandler:nil];
     
        else {
     
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
     
        }
     
    }

    类似也有跳转到以下:

    无线局域网 App-Prefs:root=WIFI

    蓝牙 App-Prefs:root=Bluetooth

    蜂窝移动网络 App-Prefs:root=MOBILE_DATA_SETTINGS_ID

    个人热点 App-Prefs:root=INTERNET_TETHERING

    运营商 App-Prefs:root=Carrier

    通知 App-Prefs:root=NOTIFICATIONS_ID

    通用 App-Prefs:root=General

    通用-关于本机 App-Prefs:root=General&path=About

    通用-键盘 App-Prefs:root=General&path=Keyboard

    通用-辅助功能 App-Prefs:root=General&path=ACCESSIBILITY

    通用-语言与地区 App-Prefs:root=General&path=INTERNATIONAL

    通用-还原 App-Prefs:root=Reset

    墙纸 App-Prefs:root=Wallpaper

    Siri App-Prefs:root=SIRI

    隐私 App-Prefs:root=Privacy

    Safari App-Prefs:root=SAFARI

    音乐 App-Prefs:root=MUSIC

    音乐-均衡器 App-Prefs:root=MUSIC&path=com.apple.Music:EQ

    照片与相机 App-Prefs:root=Photos

    FaceTime App-Prefs:root=FACETIME

    一天一章
  • 相关阅读:
    转载.net泛型理解说明
    转载Repository 和Unit of work的使用说明
    libtool的工作原理
    带有通配符的字符串匹配算法-C/C++
    linux core文件机制
    grep多条件和sed合并两行
    BZOJ 3232 圈地游戏 (分数规划 + SPFA找负/正环)
    CSP2019 D1T3 树上的数 (贪心+并查集)
    CSP-S 2019 第二轮 退役记
    object-c中的int NSInteger NSUInteger NSNumber辨析
  • 原文地址:https://www.cnblogs.com/hangman/p/6955504.html
Copyright © 2011-2022 走看看