有没有办法在showBluetoothAccessoryPickerWithNameFilter:completion:上捕获取消按钮事件?

如果我单击设备并单击取消按钮,则完成块将在同一时间(方式)执行。

谢谢。

最佳答案

愚蠢的问题...
阅读文档时必须多加注意

[[EAAccessoryManager sharedAccessoryManager] showBluetoothAccessoryPickerWithNameFilter:nil completion:^(NSError *error) {
    if(error != nil && [error code] == EABluetoothAccessoryPickerResultCancelled)
        /* Cancel pressed */;
}];

谢谢@Larme

关于ios - showBluetoothAccessoryPickerWithNameFilter:completion:取消按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22791094/

10-10 19:13