[tFile addObserver:self block:^() {
NSLog(@"here");
}];
NSData * tData = [tFile readData:&tError];
我有一个现有的观察者运行良好:
[tFilesystem addObserver:self forPathAndDescendants:[DBPath root] block:^() {}];
编辑
在示例笔记应用程序中似乎也没有调用该块。
[_file addObserver:self block:^() { [self reload]; }];
这应该在桌面上编辑文件并保存后重新加载文件。它没有。