Synchronization Service Client Interface and Xcode Project Diagram

I started working on a project that will primarily act as a sync client. Ideally, a project has two components: its own set of schemas and a preference panel.

As a first step, I created an Xcode project for a set of schemas. But now I decided to start writing the code for the preference bar and the client and I'm not sure if the best way is to integrate it with a project I already have.

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

0


source to share


1 answer


The easiest way is to create a new Pref Pane project. This way you get all the benefits. After that, you can drag the project into the schematic project and make it dependent on your schematic project. Whenever you build your main project (schematic project), if there is any change in your panel project, it will be restored.



+2


source







All Articles