Creating a Cocoa Framework
Posted
by David Schiefer
on Stack Overflow
See other posts from Stack Overflow
or by David Schiefer
Published on 2010-05-31T18:46:20Z
Indexed on
2010/05/31
18:53 UTC
Read the original article
Hit count: 284
cocoa
|frameworks
Hi,
I've created a working Cocoa framework which I wish to redistribute. The problem is however, it won't run outside of Xcode. I've read something about @executable_path/../Frameworks
, which I did not include, because I don't know where to put it :/
Therefore I run my app in Xcode using the DYLD_FRAMEWORK_PATH
variable which works fine, but only in Xcode - if I try to run it on its own it crashes straight away and says IMAGE NOT FOUND
.
I'm sure @executable_path/../Frameworks
is what's missing, but I don't know where to put it.
Could anyone help me out please? :)
Thanks
© Stack Overflow or respective owner