Problem is, I'm not sure how to convert this dylib project into a
framework. Anyone offer some advice on how to do that?
Although it has not much to do with Objective-C,
please take a look at /System/Library/Frameworks/System.framework for
an example.
You can also symlink the Headers if needed/available.
-- hns
It is not necessary to convert your library in a framework. You can
drag headers and .dylibs directly into the project, that works too.
(However it might still be a good idea to have a separately
installable framework).
--
__Pascal Bourguignon__
In my experience it is usually much better to simply drag the source
of that library directly into the application's xcode project.
Frameworks and libraries are nice but in many cases you don't actually
need them.
S.
Create a new framework target within the existing project, add your
source code, headers, and any resources you want to bundle with it to
that target, and Bob's your uncle. :-)
sherm--