With the Dropbox Sync API there was a method [DBFile writeContentsOfFile]
which would sync the file at a later time if the internet connection was offline.
Is there a similar function in the new Dropbox API v2?
I've found a method on DBFilesRoutes -uploadData:inputData:
, which works fine for normal upload, but fails with an error if there's no internet connection...and unfortunately it doesn't sync later when the connection is restored.
Perhaps using DBFilesRoutes -uploadSessionStartData:
is the solution (which I'll attempt shortly).