Reputation: 14168
I am detecting file changes via the Dropbox Sync API (iOS) like this:
[[DBFilesystem sharedFilesystem] addObserver:self forPathAndDescendants:[DBPath root] block:^() {
NSLog(@"File(s) changed!");
}];
This is all fine and good, but I need to know which files changed. How can I make this block return the filenames of the changed files?
Thanks!
Upvotes: 1
Views: 383
Reputation: 60153
There isn't any support for this, but we've definitely heard this feature request before.
Upvotes: 2