On Sun, 25 Nov 2012 21:38:25 +0800, Roland King <[email protected]> said: >I'm pretty sure that when I was watching the WWDC 2012 sessions, dispatch >queues are now objects (since iOS6 and OS 10.7/10.8?) and as such I don't have >to dispatch_retain() or release them and can just use them like any other >object. But I can't find a reference in the documentation which supports that, >that still says dispatch_queue_t is a struct.
The place to look is <os/object.h>. I haven't found a more definitive statement (or a clearer one). It's easy to detect whether you're running under the rules described here because if you're using ARC (and you'd be crazy not to) you *cannot* dispatch_release. m. -- matt neuburg, phd = [email protected], <http://www.apeth.net/matt/> A fool + a tool + an autorelease pool = cool! Programming iOS 5! http://shop.oreilly.com/product/0636920023562.do _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
