showBluetoothAccessoryPickerWithNameFilter:completion: 取消按钮

Posted

技术标签:

【中文标题】showBluetoothAccessoryPickerWithNameFilter:completion: 取消按钮【英文标题】:showBluetoothAccessoryPickerWithNameFilter:completion: cancel button 【发布时间】:2014-04-01 16:04:34 【问题描述】:

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

如果我单击设备和取消按钮,则会在相同的时间(方式)中执行完成块。

谢谢。

【问题讨论】:

“如果我点击设备和取消按钮,完成块将同时执行”是什么意思,根据文档,完成块的分析会说例如EABluetoothAccessoryPickerResultCancelled 【参考方案1】:

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

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

谢谢@Larme

【讨论】:

以上是关于showBluetoothAccessoryPickerWithNameFilter:completion: 取消按钮的主要内容,如果未能解决你的问题,请参考以下文章