iPad Air - CoreBluetooth[ERROR] Cancelling picker as we couldn't communicate with Bluetooth

扶醉桌前 提交于 2019-12-06 11:44:08

Your app needs to include a 64-bit slice (add arm64 to the ARCHS build setting), otherwise this problem will occur on 64-bit devices like iPhone 5S, iPad Air... This is a bug in iOS 7.0 - 7.0.3. It is supposed to be fixed in the next release.

Adding both:

#import <CoreBluetooth/CoreBluetooth.h>
#import <ExternalAccessory/ExternalAccessory.h>

To either the header of implementation fixed this for me.
Very strange because the frameworks are already linked at app launch?..

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!