2

I embedded the private framework BluetoothManager.framework with headers in path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks, with the includes

#import <BluetoothManager/BluetoothManager.h>
#import <BluetoothManager/BluetoothDevice.h>

but since Xcode 7.3 there is an error:

error :ld: framework not found BluetoothManager.

Michael Dorner
  • 17,587
  • 13
  • 87
  • 117
biker084
  • 21
  • 3

1 Answers1

2

As mentioned in the Apple release notes private frameworks (and also BluetoothManager.framework are removed from the SDK iOS 9.3. This is why it does not work any more.

Michael Dorner
  • 17,587
  • 13
  • 87
  • 117