I have this code:
[metaDoc openWithCompletionHandler:^(BOOL success) {
if (!success) {
NSLog(@"UH OH");
}
}];
Why would this ever return NO? For me it's returning NO even though in my
- (BOOL)loadFromContents:(id)contents
ofType:(NSString *)typeName
error:(NSError **)outError
method, I am always returning YES.
Thanks