I just installed Xcode 5.1 and found that it definitely requires projects to use ARC. I get
error: garbage collection is no longer supported
when trying to compile Core Plot (version 1.4). Out of curiosity I told Xcode to convert Core Plot to ARC. But it fails with
ARC forbids Objective-C objects in struct
in file CPTPlatformSpecificFunctions.m
. I don't want to dive into Core Plot and break something by trying to fix this or similar errors. Is there a compiler setting I have overlooked? Or will there be a Core Plot version which uses ARC soon?
Thanks,
Dirk