Reputation: 339
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
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