我有这个代码:
[metaDoc openWithCompletionHandler:^(BOOL success) {
if (!success) {
NSLog(@"UH OH");
}
}];
为什么这会返回NO?对我来说,即使在我的
- (BOOL)loadFromContents:(id)contents
ofType:(NSString *)typeName
error:(NSError **)outError
方法,我总是返回YES。
谢谢