ios10 - 关于iOS 10,跳转系统设置问题
天蓬老师
天蓬老师 2017-04-18 09:48:49
0
10
447

iOS 10 更新以后,发现以前跳转系统应用的方法无效了。(已解决:参考 https://github.com/sushushu/i...)

-(void)toWIFI {
    
    NSURL *url = [NSURL URLWithString:@"prefs:root=WIFI"];

    if ([[UIApplication sharedApplication] canOpenURL:url]) {
        
        [[UIApplication sharedApplication] openURL:url]; // iOS 9 的跳转
        [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];// iOS 10 的跳转方式
    }
}

    

iOS 9的时候[[UIApplication sharedApplication] openURL:url]; 这个方法正常跳转,到了iOS 10的时候这个方法就不能用了。官方API如下:

- (BOOL)openURL:(NSURL*)url NS_DEPRECATED_IOS(2_0, 10_0, "Please use openURL:options:completionHandler: instead") NS_EXTENSION_UNAVAILABLE_IOS("");
- (BOOL)canOpenURL:(NSURL *)url NS_AVAILABLE_IOS(3_0);
    // Options are specified in the section below for openURL options. An empty options dictionary will result in the same
    // behavior as the older openURL call, aside from the fact that this is asynchronous and calls the completion handler rather
    // than returning a result.
    // The completion handler is called on the main queue.
    - (void)openURL:(NSURL*)url options:(NSDictionary<NSString *, id> *)options completionHandler:(void (^ __nullable)(BOOL success))completion NS_AVAILABLE_IOS(10_0) NS_EXTENSION_UNAVAILABLE_IOS("");  

请问我该如何使用新的API
- (void)openURL:(NSURL*)url options:(NSDictionary<NSString *, id> *)options completionHandler:(void (^ __nullable)(BOOL success))completion NS_AVAILABLE_IOS(10_0) NS_EXTENSION_UNAVAILABLE_IOS(""); 或者说这个options我该传什么进去(经测试,传空字典是没有用的)?

万分感谢。

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

répondre à tous(10)
PHPzhong

Abandonnez, iOS 10 ne permet pas d'accéder à aucun paramètre système.

Peter_Zhu

Pour le problème du non-saut d'iOS10, iOS propose en fait une méthode non divulguée. Mais la modération est un problème, mais nous pouvons trouver des moyens de le contourner.

NSString * defaultWork = [self getDefaultWork];
NSString * bluetoothMethod = [self getBluetoothMethod];        
NSURL*url=[NSURL URLWithString:@"Prefs:root=Bluetooth"];
Class LSApplicationWorkspace = NSClassFromString(@"LSApplicationWorkspace");
[[LSApplicationWorkspace  performSelector:NSSelectorFromString(defaultWork)]   performSelector:NSSelectorFromString(bluetoothMethod) withObject:url     withObject:nil];

Utilisez les valeurs ASCII pour assembler et combiner des méthodes. Cela contourne l’examen.

-(NSString *) getDefaultWork{
   NSData *dataOne = [NSData dataWithBytes:(unsigned char []){0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x57,0x6f,0x72,0x6b,0x73,0x70,0x61,0x63,0x65} length:16];
    NSString *method = [[NSString alloc] initWithData:dataOne encoding:NSASCIIStringEncoding];
return method;
}

-(NSString *) getBluetoothMethod{
    NSData *dataOne = [NSData dataWithBytes:(unsigned char []){0x6f, 0x70, 0x65, 0x6e, 0x53, 0x65, 0x6e, 0x73, 0x69,0x74, 0x69,0x76,0x65,0x55,0x52,0x4c} length:16];
    NSString *keyone = [[NSString alloc] initWithData:dataOne encoding:NSASCIIStringEncoding];
    NSData *dataTwo = [NSData dataWithBytes:(unsigned char []){0x77,0x69,0x74,0x68,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73} length:11];
    NSString *keytwo = [[NSString alloc] initWithData:dataTwo encoding:NSASCIIStringEncoding];
    NSString *method = [NSString stringWithFormat:@"%@%@%@%@",keyone,@":",keytwo,@":"];
return method;
}

Ce qui précède explique comment accéder à l'interface Bluetooth. Il peut également y avoir d’autres pages auxquelles accéder. La page de configuration est @"@"Prefs:root=TETHERING", et le wifi est @"Prefs:root=WIFI". Notez que le P dans Prefs est en majuscule.
Il y a aussi des inconvénients à écrire de cette façon, si La méthode non divulguée d'Apple est une fois modifiée. Nous devons l'être à nouveau

.
Ty80

Vous n'avez pas défini le schéma d'URL de votre application

PHPzhong

Écrivez comme ça dans iOS10, un gars formidable du groupe m'a appris
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

刘奇

兄弟 我知道了 哈哈 我刚刚找到解决方法

marque pragma -- options openURL --

// Option pour openURL:options:CompletionHandler : ouvrir l'URL uniquement s'il s'agit d'un lien universel valide avec une application configurée pour l'ouvrir
// Si aucune application n'est configurée ou si l'utilisateur a désactivé son utilisation pour l'ouvrir le lien, gestionnaire d'achèvement appelé avec NO
UIKIT_EXTERN NSString *const UIApplicationOpenURLOptionUniversalLinksOnly NS_AVAILABLE_IOS(10_0);

伊谢尔伦

[[UIApplication sharedApplication] openURL:url options:@{UIApplicationOpenURLOptionUniversalLinksOnly:@""} CompletionHandler:nil ];

左手右手慢动作
    NSURL *url = [NSURL URLWithString:@"prefs:root=com.testproject.testname"];
        [[UIApplication sharedApplication]openURL:url

];
这样就OK吧  里面写你的项目名字 可以跳去
刘奇

Vous avez rencontré le même problème, l'avez-vous résolu ?

小葫芦

Avez-vous résolu le problème ?

大家讲道理

Pourriez-vous s'il vous plaît demander à l'affiche comment résoudre ce problème ?

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal