有没有办法在showBluetoothAccessoryPickerWithNameFilter上捕获取消按钮事件:完成:?
如果我点击设备和取消按钮,完成块将在相同的时间(方式)中执行。
谢谢。
答案 0 :(得分:4)
愚蠢的问题...... 我在阅读文档时必须多加注意
[[EAAccessoryManager sharedAccessoryManager] showBluetoothAccessoryPickerWithNameFilter:nil completion:^(NSError *error) {
if(error != nil && [error code] == EABluetoothAccessoryPickerResultCancelled)
/* Cancel pressed */;
}];
感谢@Larme