Reputation: 21
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
.
Upvotes: 2
Views: 287
Reputation: 20175
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.
Upvotes: 2