Bluetooth設定を直接開くことができるUIAlertActionにアクションを追加しようとしています。
現在、設定を開くことができますが、アクションを「設定を開く」から「Bluetooth設定を開く」に変更するのを手伝ってくれる人はいますか?
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
NSLog(@"Geverifieerd");
NSURL *appSettings = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:appSettings];
}];
ありがとう