vote up 5 vote down star
5

I am developing an iphone application and have to parse xml files in order to put them into a database. I will also be using those same xml parsers in my app so users can import their own data. I was wondering how I can extract those xml parsers into a bundle or a library so I can use them both in my iPhone app and in a command line app where I just populate a sqlite3 database. Thanks in advance!

flag

2 Answers

vote up 6 vote down

Create a static library project, then use the interproject dependency feature of Xcode to build them in the correct order and link the app with the static library. You'll need to have a common build directory set for all the projects for this to work correctly (at least you did around Xcode 3.0, didn't check if this is still a problem with 3.1).

You can set the build directory from the target or project's build settings (in the Get Info pane). To create an interpoject dependency:

  • Drag the library project into the application project's Files & Groups pane.
  • Set up target dependency in the application target's Get Info pane. Make it dependent on the library's target.
  • Drag the library product in the application target's Link With Libraries step. You can find the library product by expanding the library project within the app project's Files & Groups (click the arrow).

Sounds more complicated than it is. It isn't much.

(Small extras: yes, you need a common build folder as indicated in the Xcode Project Management Guide, and the Xcode Build System Guide can help you "get" Xcode's build system, which -- at the cost of starting a religion war -- I think is one of the most flexible and simple build systems out there.)

link|flag
thanks for your detailed response. I will try it out when I get home tonight – Chris Oct 1 '08 at 20:57
You don't need to use a common build directory as of Xcode 3.1.1 (not 3.1). – Chris Hanson Oct 1 '08 at 22:34
vote up -1 vote down

The short and depressing answer is: You can't.

  1. There is no framework-Project Type for the iPhone platform
  2. There is a target-type "static library" for the iPhone, but out-of-the-box it can't be shared between projects
  3. Even if there was a framework-Project type for the iPhone platform, you'd still be stuck, since you need to link against different frameworks depending on the target platform (include UIKit/UIKit.h for the iPhone, include Cocoa/Cocoa.h for Cocoa)

The only thing you can do is to keep your shared code in a separate directory, #include the correct headers by preprocessor-macros, and build static library targets in your applications by hand.

Greets Seb

link|flag
As I state below, it IS possible to use project interdependency to divide common code into a library; it IS possible to share a static library target among projects out of the box. – millenomi Oct 1 '08 at 20:31

Your Answer

Get an OpenID
or

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