John Wilund
John Wilund

Reputation: 339

In Xcode: What actions is needed to add a framework from System/Library/PrivateFrameworks?

I need to import a .framework found in /System/Library/PrivateFrameworks/ into my iOS app. How do I make it so? I have the latest Xcode 4.6.

Upvotes: 0

Views: 2138

Answers (1)

Bala
Bala

Reputation: 93

In XCode 4.6,

Select Project on the left-pane (in Project Navigator) and select TARGETS and click "Build Phases" tab. Add it under "Link Binary With Libraries".

If XCode couldn't find the path of the framework, then... Click "Build Settings" Tab (near to "Build Phases") and under 'Search Paths' set your framework path in 'Framework Search Paths'.

Upvotes: 3

Related Questions