Reputation: 249
I need to import the BluetoothManager Private Framework on my IOS 7 . I need to build a test app that would scan / discover and list nearby Bluetooth devices . I referred to the following link mentioned in S.O iOS 6 - BluetoothManager framework - "NSObject" not found error , however I am unable to import the BluetoothManager.framework folder. In fact when I go to the link library with binary options in Xcode I do not see the BluetoothManager.framework listed at all . Is there something different I need to try for IOS7?
Upvotes: 0
Views: 4278
Reputation: 20145
There is a Github tutorial for handling the BluetoothManager framework. But the steps are basically
open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/PrivateFrameworks/BluetoothManager.framework
BluetoothManager.h
and BluetoothDevice.h
in the directory above. BluetoothManager.framework
in Targets → YourApp → Build Phases → Link Binary With Libraries:
Upvotes: 3