Hi,
I am maintaining a fairly large mac project and an iphone client for this project. Some code as well as some images and core data models are shared between these two projects.
I want to create a shared framework containing this shared components but to my surprise, frameworks like we cocoa developers known them are not supported on the iphone os.
Currently I see the following options:
a) Include the files in both projects (much tedious work) b) Create a static library for both projects and manually copying the images/core data models c) Create a static lib for iphone and a framework for mac
Any suggestions?