up vote 4 down vote favorite
1
share [g+] share [fb]

I am working on a number of iPhone development projects and I am starting to refactor code and would like to be able to package it in a library or framework that I can reuse in different xcode projects for different iPhone applications. I looked at the New Project dialog in xcode and the only option I have under iPhone OS is to create an Application. I have also read somewhere in the iPhone SDK documentation that I cannot create my own framework to reuse in different iPhone apps. What is then the best way to package my reusable components? I went over the iPhone SDK documentation and could not find out. I could keep all my reusable classes in a dummy project and link to those source files from other projects (so I would have a single copy of the source to maintain), but that feels very clumsy. Thank you, fxt

link|improve this question
feedback

3 Answers

  • Create your common code as a static library.
  • Drag the xcodeproj file into the groups and files section of the project you want to use it in.
  • Update the include path to point to the headers of your static library.
  • In the info pane for the project you want to use the static lib in add it as a direct dependancy.

This process makes it almost as easy to work with as a regular framework.

link|improve this answer
feedback

Unfortunately Apple does not allow frameworks for the iPhone development at this stage. You can either bundle your code in a static library or just the source files in such a way that can easily use them in multiple projects.

I use SVN and keep my reusable code in repositories so that I can easily include them in new projects as externals

link|improve this answer
feedback

Apple does not allow to create own framwork. But you can achieve your goal by creating static libary. Here is important link for kick off Static library. Have a look: http://blog.stormyprods.com/2008/11/using-static-libraries-with-iphone-sdk.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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