I'm starting work on a project that will be primarily acting as a Sync Services client. Ideally, the project will have two components: a custom schema bundle and a preference pane.

As a first step, I've created an Xcode project for the schema bundle. But now I find myself ready to start writing the code for the preference pane and the client, and I'm not sure what the best way is to integrate it with the project I already have.

What approaches have you found to work well in these kinds of situations?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The easiest way is probably to create a new Pref Pane project. That way you get all the benefits. After that, you can actually drag the project into your schema project and make it a dependent of your schema project. Whenever you build your main project (the schema project), if there are any changes in your pref pane project it will get rebuilt.

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.