I am trying to compile a Desktop OS X Cocoa application:
dispatch_sync(dispatch_get_main_queue(), ^{ NSLog(@"Hello World"); });
However, I am getting the following compile time error:
implicit declaration of function dispatch_sync
I have imported these lines:
#import <dispatch/dispatch.h>
#import <dispatch/queue.h>
#import <dispatch/base.h>
The Base SDK is set to 10.6. Anything else to look for? Am I missing an import?
Any ideas?
#import <Cocoa/Cocoa.h>which I suspect you already have. Otherwise as Colin answer says, check your deployment target. – NJones Jan 26 '12 at 16:19