vote up 3 vote down star
3

I would like to create a framework for some reusable code that I would like to include in other iPhone apps. What is the best way to do it? Ideally, I would like it to work just like builtin frameworks and have the app use it without mucking around with build files.

flag

5 Answers

vote up 0 vote down

I have been thinking about the same thing. So far all I've been able to do is make one project just the way I want it and copy it to another folder to start a new project. Then I rename the .xcodeproj file and open that. Then I customize the basics (icons, default.png, the target, the executable) before building the new app.

It's clunky, and NOT the way code reuse is supposed to work. I'm sure there are better solutions. Maybe some clever use of source code management / version control? Maybe something built into XCode? Other ideas? I look forward to seeing more posts here.

link|flag
vote up 0 vote down

I've had the same experience as Alan.

Is there a way to determine the compilation/linking command lines required, and script them in maven or ant?

link|flag
vote up 4 vote down

Apple prevents the use of custom frameworks on the iPhone. But you can use good old static libraries. In the 3.0 GM SDK there's even a project template for that, but you can also simply set up a static library target yourself.

link|flag
vote up 0 vote down

Please see the following link for how to construct an iPhone Framework from an iPhone static library:
How-To Construct iPhone Framework Bundles For Cross-Compiled iPhone Libraries

link|flag

Your Answer

Get an OpenID
or

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