0

Bluetooth設定を直接開くことができるUIAlertActionにアクションを追加しようとしています。

現在、設定を開くことができますが、アクションを「設定を開く」から「Bluetooth設定を開く」に変更するのを手伝ってくれる人はいますか?

UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
                                handler:^(UIAlertAction * action) {
                                        NSLog(@"Geverifieerd");
                                        NSURL *appSettings = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
                                        [[UIApplication sharedApplication] openURL:appSettings];
                                }];

ありがとう

4

1 に答える 1

0

Apple doc のこのページによると、他にできることはあまりありません。ユーザーが Bluetooth 設定に移動することを信頼する必要があります。

于 2015-05-26T07:49:14.193 に答える