A recent post on the Apple developer forums indicated that it is still using gc. But it's a very large, old codebase at this point so that's not surprising.
I imagine that as they drop support for older platforms and have the time, they'll slowly remove reliance on gc.
Comments
Does anyone know if there is a way to monitor xcode and find out if it's GC or ARC?
You can just use otool to dump the Objective-C information out of the MachO executable:
That's for Xcode 4.4. So yes, it's still being built for Garbage Collection.A recent post on the Apple developer forums indicated that it is still using gc. But it's a very large, old codebase at this point so that's not surprising.
I imagine that as they drop support for older platforms and have the time, they'll slowly remove reliance on gc.