TL; DR: dispatch_queue_t
теперь объект Objective C, которым можно управлять с помощью ARC.
Я не проверял, насколько далеко это правда, но с использованием iOS 7 SDK и Xcode 5, dispatch_queue_t
является типом объекта. Я объявляю свойство для очереди как
@property (nonatomic, strong) dispatch_queue_t syncQueue;
Компилятор доволен и все работает как положено. Я точно знаю, что раньше это не работало в iOS 4 или 5 (до ARC это было retain
вместо strong
). Я копался в определении для dispatch_queue_t
и нашел это:
/*!
* @typedef dispatch_queue_t
*
* @abstract
* Dispatch queues invoke blocks submitted to them serially in FIFO order. A
* queue will only invoke one block at a time, but independent queues may each
* invoke their blocks concurrently with respect to each other.
*
* @discussion
* Dispatch queues are lightweight objects to which blocks may be submitted.
* The system manages a pool of threads which process dispatch queues and
* invoke blocks submitted to them.
*
* Conceptually a dispatch queue may have its own thread of execution, and
* interaction between queues is highly asynchronous.
*
* Dispatch queues are reference counted via calls to dispatch_retain() and
* dispatch_release(). Pending blocks submitted to a queue also hold a
* reference to the queue until they have finished. Once all references to a
* queue have been released, the queue will be deallocated by the system.
*/
DISPATCH_DECL(dispatch_queue);
Судя по звукам, это не должно работать, поэтому я проверил определение DISPATCH_DECL
и нашел это, которое объясняет все:
/*
* By default, dispatch objects are declared as Objective-C types when building
* with an Objective-C compiler. This allows them to participate in ARC, in RR
* management by the Blocks runtime and in leaks checking by the static
* analyzer, and enables them to be added to Cocoa collections.
* See <os/object.h> for details.
*/