This is our iOS implementation of a two-way syncing algorithm for DropBox!
FLOSync synchronizes files in your app's documents directory with dropbox.
Once you've included the DropBox SDK in your project, simply call the following method to invoke the sync.
[FLOSync Sync];
This class uses the ConciseKit headers: (https://github.com/petejkim/ConciseKit)
The methodology and design behind this class was inspired from Chris Hulbert's CHBgDropboxSync. I wrote this class to reduce the number of calls made to loadMetadata and to objectify the process a little more.
You can find CHBgDropboxSync here.