这是用于检测Dropbox更改的代码。但是从其他设备更改数据时不会调用。
__weak typeof(self) weakSelf = self;
[self.datastore_ addObserver:self block:^()
{
if (weakSelf.datastore_.status.incoming)
{
//NSDictionary *changes = [weakSelf.curDataSrore_ sync:nil];
}
}];
[datastore_ close];
让我知道我的代码中的任何错误?