美文网首页iOS初中级开发
iOS 10打开设置中的指定模块

iOS 10打开设置中的指定模块

作者: JC_Wang | 来源:发表于2016-12-13 10:23 被阅读517次

    1、新url_Scheme列表 (prefs:在iOS10 中改成了Prefs:)

    电池电量 Prefs:root=BATTERY_USAGE
    通用设置 Prefs:root=General
    存储空间 Prefs:root=General&path=STORAGE_ICLOUD_USAGE/DEVICE_STORAGE
    蜂窝数据 Prefs:root=MOBILE_DATA_SETTINGS_ID
    Wi-Fi 设置 Prefs:root=WIFI
    蓝牙设置 Prefs:root=Bluetooth
    定位设置 Prefs:root=Privacy&path=LOCATION
    辅助功能 Prefs:root=General&path=ACCESSIBILITY
    关于手机 Prefs:root=General&path=About
    键盘设置 Prefs:root=General&path=Keyboard
    显示设置 Prefs:root=DISPLAY
    声音设置 Prefs:root=Sounds
    App Store 设置 Prefs:root=STORE
    墙纸设置 Prefs:root=Wallpaper
    打开电话 Mobilephone://
    世界时钟 Clock-worldclock://
    闹钟 Clock-alarm://
    秒表 Clock-stopwatch://
    倒计时 Clock-timer://
    打开相册 Photos://
    

    # 跳转系统app

    NSURL *url = [NSURL URLWithString:@"weixin://"];
    [[UIApplication sharedApplication] openURL:url];
    
    appstore  itms-apps://
    日历 calshow://
    时钟
        world clock  clock-worldclock://
        alarm clock-alarm://
        stopwatch clock-stopwatch://
        timer clock-timer://
    通讯录 contact://
    applewatch  itms-watch://
    facetime
        facetime视频 facetime://${PHONE}
        facetime确认视频 facetime-prompt://${PHONE}
        facetime音频 facetime-audio://${PHONE}
        facetime确认音频 facetime-audio-prompt://${PHONE}
    find friends findmyfriends://
    find iphone fmip1://
    gamecenter gamecenter://
    ibooks ibooks://
    iclouddrive iclouddriveapp://
    itunes itms://
    邮件
        打开邮件app message://
        写邮件 mailto:
        发送电子邮件 mailto:${EMAIL}?cc=&subject=${SUBJECT}&body=${BODY}
    地图
        打开地图app http://maps.apple.com/?q=
        获取地图路线 http://maps.apple.com/?saddr=${SADDR}&daddr=&{DADDR}
        搜索地图 http://maps.apple.com/?q=${QUERY}&near=${NEAR}
    信息
        写信息 sms://
        发送信息 sms:${PHONE}
        群发信息 launcher://msg?to=${PHONE}&subject=${SUBJECT}&body=${BODY}
    音乐 music://
    新闻 applenews://
    备忘录 mobilenotes://
    电话
        打开电话app mobilephone://
        拨打电话 tel:${PHONE}
        要求确认拨打 telprompt:${PHONE}
    照片 photos-redirect://
    播客 pcast://
    提醒事项 x-apple-reminder://
    safari x-web-search://
    视频 videos://
    语音备忘录 voicememos://
    wallet shoebox://
    天气 weather://?index=0
    
    
    注意,类似${PHONE}这样的代表需要参数,可以设定具体值,
    
    tel:${PHONE} 具体到拨打10086
    tel:10086
    1
    2
    

    2、openURL在iOS 10中只能打开App设置界面 (模拟器&真机)

    - (void)viewDidLoad {
        [super viewDidLoad]; 
        //[NSURL URLWithString:UIApplicationOpenSettingsURLString]之前调用
        UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
        [[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
    }
    
    - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
    {
        [self openWiFi];
    }
    
    // 打开系统的Wi-Fi界面,当系统大于10的时候直接打开当前App的设置界面
    - (void)openWiFi {
        NSURL *url = [NSURL URLWithString:@"Prefs:root=WIFI"];
        if ([[UIApplication sharedApplication] canOpenURL:url]) {
            // 系统小于10的时候,打开Wi-Fi界面
            [[UIApplication sharedApplication] openURL:url];
        } else {
            // 系统大于10的时候直接打开当前App的设置界面
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
        }
    }
    
    
    3.gif

    3、我就要在iOS 10中打开 (真机)

    方案一、MobileCoreServices.framework<

    // 私用API打开系统WIFI界面  
    - (void)privateAPIOpenWiFi {
        NSURL*url=[NSURL URLWithString:@"Prefs:root=WIFI"];
        Class LSApplicationWorkspace = NSClassFromString(@"LSApplicationWorkspace");
        [[LSApplicationWorkspace performSelector:@selector(defaultWorkspace)] performSelector:@selector(openSensitiveURL:withOptions:) withObject:url withObject:nil];
    }
    
    1.gif

    4、使用AppExtension之 TodayExtension (真机) >方案二 <

    A、扩展与宿主App之间共享数据

    有两种方式:
    1.通过NSUserDefaults
    2.通过一个扩展与App都可以访问的共享容器,来存放文件,数据(Core Data, Sqlite等都可以存放在这个共享的容器中)。

    1、NSUserDefault <首次需要打开App存入数据>

    共享数据(AppDelegate.m)

        [[[NSUserDefaults alloc] initWithSuiteName:@"group.JSPath_Demo"] setValue:@1 forKey:@"MyNote"];
      
    

    取到共享数据(TodayViewController.m)

        NSNumber *numValue = [[[NSUserDefaults alloc] initWithSuiteName:@"group.JSPath_Demo"] valueForKey:@"MyNote"];
        NSLog(@"--->%@",numValue);
    
    2、数据库存更多数据 <CoreData, Sql>

    B、扩展与宿主App之间共享代码

    原理:我们需要在扩展和App之间共享代码,也就是将所有公用的文件添加到一个framework中,这样我们只要在扩展中引入这个framework,就可以使用其中的代码了

    创建库framework

    QQ20161213-094816@2x.png

    Widget手动添加framework

    QQ20161213-095108@2x.png

    共享 代码或者资源文件

    QQ20161213-095359@2x.png

    C、 如何从扩展中打开宿主App

    扩展不是一个完整的程序,所以它并没没有[UIApplication sharedApplication] 这个对象。所以Apple给每个UIViewController加了一个extensionContext属性,在我们的宿主App中,这个属性是nil,而在扩展中,我们就可以通过下面的方法。

    1、设置Scheme
    QQ20161213-101055@2x.png
    2、跳转路径
     [self.extensionContext  openURL:[NSURL URLWithString:@"todaywidget://home" ]completionHandler:nil];
    
    3、可以在AppDelegate的openURL代理方法中,通过URL后面的参数不同,来打开不同的页面(AppDelegate.m)
    - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
    {
        if ([url.absoluteString hasPrefix:@"todaywidget"]) {
            if ([url.absoluteString hasSuffix:@"home"]) {//判断是否是直接跳入到相应页面
                UIViewController *addVC = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"AddVC"];
                UINavigationController *rootNav = (UINavigationController*)self.window.rootViewController;
                [rootNav pushViewController:addVC animated:YES];
            }
        }
        return YES;
    }
    

    相关文章

      网友评论

        本文标题:iOS 10打开设置中的指定模块

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