views:

71

answers:

1

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?

A: 

Hi Robert - not sure if you ever figured this one out, but I have asked a similar question over here: http://stackoverflow.com/questions/3221222/how-to-compile-an-osx-cocoa-framework-from-code-in-an-iphone-project - if you have any useful light to shed on how you ended up solving this that would be much appreciated!

glenc