vote up 1 vote down star
1

I am integrating growl into my Objective-C app.

However If I build and run my app without copying the Growl.framework to ~/Library/Frameworks or a corresponding location then my App fails to execute.

I don't really fully understand Frameworks under objective-c, but I was wondering if there is anyway to include the Framework within my App so I don't have to manually distribute the framework to the user?

I believe that's what tweetweet does in there build process but I haven't quite figured out how they did it.

Thanks, Brian

flag

79% accept rate

1 Answer

vote up 1 vote down check

Yes, in your target in Xcode you need to create a new 'Copy Files' build phase (right click on the target > Add > New Build Phase > New Copy Files Build Phase). When the More Info window pops up, click on the pop up button and choose Frameworks. Drag this build phase to just below the copy resource phase and then drag any frameworks you want copied over to it.

link|flag
Thanks, worked great. Not really sure how I over looked that. – Brian Gianforcaro Jan 23 at 20:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.