user3000528
user3000528

Reputation: 31

How do I get/find CoreBluetooth.Framework?

I installed the latest XCode and am trying to add CoreBluetooth.Framework to my project. It isn't in system\library\frameworks. Am I looking in the wrong place or am I missing an install step somewhere?

Upvotes: 3

Views: 4161

Answers (3)

Michael Böckling
Michael Böckling

Reputation: 7872

In case you need this for Bluetooth Explorer, you have to symlink the framework first, it is hidden in IOBluetooth.framework:

sudo ln -s /System/Library/Frameworks/IOBluetooth.framework/Frameworks/CoreBluetooth.framework /System/Library/Frameworks/CoreBluetooth.framework

Upvotes: 0

juniperi
juniperi

Reputation: 3763

I hope this helps. Picture is more than 1000 words sometimes.

Upvotes: 6

Peter Foti
Peter Foti

Reputation: 5654

In Xcode you'll see your project at the top of the left hand pane, click on it. Once you've clicked on it click on General then find Linked Frameworks and Libraries. Click the + button, search for CoreBluetooth once you find it click on it and click Add.

For a visual representation check out Apple's instructions here

Upvotes: 2

Related Questions