0

我需要在我的 IOS 7 上导入 BluetoothManager Private Framework。我需要构建一个测试应用程序来扫描/发现并列出附近的蓝牙设备。我参考了 SO iOS 6 - BluetoothManager framework - "NSObject" not found error中提到的以下链接,但是我无法导入 BluetoothManager.framework 文件夹。事实上,当我在 Xcode 中使用二进制选项访问链接库时,我根本没有看到 BluetoothManager.framework 列出来。我需要为 IOS7 尝试一些不同的东西吗?

4

1 回答 1

3

有一个处理 BluetoothManager 框架的 Github 教程。但是步骤基本

  • 查找文件夹,例如通过终端
打开/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/PrivateFrameworks/BluetoothManager.framework
  • 提取 Headers.zip 存档并添加提取的文件夹 Headers,其中包含BluetoothManager.hBluetoothDevice.h在上面的目录中。
  • 重启 Xcode 现在你会BluetoothManager.frameworkTargets → YourApp → Build Phases → Link Binary With Libraries中找到: 在此处输入图像描述
于 2014-03-23T10:45:50.420 回答