Comment on Mountain Lion seems to have addressed the memory management issues in OS XparentComments−msbarnett14yYou can just use otool to dump the Objective-C information out of the MachO executable: otool -o /Applications/Xcode.app/Contents/MacOS/Xcode ..... Contents of (__DATA,__objc_imageinfo) section version 0 flags 0x6 OBJC_IMAGE_SUPPORTS_GC That's for Xcode 4.4. So yes, it's still being built for Garbage Collection.
Comments
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.