What property should I use for a Dispatch Queue after ARC?

前端 未结 5 623
情深已故
情深已故 2020-12-04 15:28

I maintain a dispatch queue as a property with my view controller. I create this queue once in my view controller\'s init method, and reuse a few times for some background t

5条回答
  •  难免孤独
    2020-12-04 16:13

    Based on iOS7, I tested whether dispatch_queue object is an objective-C object and I figured out they already are objective-c object. to paraphrase this, attribute((NSObject)) is not necessary now.

提交回复
热议问题