Possible Duplicate:
Does ARC support dispatch queues?
When declaring a GCD property like so:
@property (assign, atomic) dispatch_queue_t myQueue;
Do the accessors get synthesised with appropriate calls to dispatch_retain
and dispatch_release
, or do I still need to write my own manual retains/releases?