zzzzz
zzzzz

Reputation: 1239

Can't add private framework to project.it says framework not found

I added a private framework to my project using link binary with libraries, but when i try to use its methods it say framework not found.The framework is BluetoothManager and sometimes it can't recognize bluetooth manager.

EDIT: I have searched the internet and stack overflow and didnt find any correct way to add the private framework to my library.Somebody please guide me step by step to adding a private framework to xcode.

Upvotes: 3

Views: 1347

Answers (2)

Niru Mukund Shah
Niru Mukund Shah

Reputation: 4733

Checkout if you have missed something from following three steps.

1   go to your project targets - search - HEADER_SEARCH_PATHS add your
path

2  select Building phases in settings - choose target dependencies
and add library

3  select Building phases in settings - link binary libraries and
add library.a

Enjoy Programming!

Upvotes: 0

Paras Joshi
Paras Joshi

Reputation: 20541

make sure the path to that framework is in the Framework search path check Project info.

and set that the framework should be copied into the destination.

Upvotes: 1

Related Questions