I have an Xcode 3.2 targeted project . I want to convert this project to ARC to improve the
performance.I am following these steps.
Edit->Refactor->Convert to Objective C ARC
I have got some .mm files to which I am disabling the ARC using -fno-objc-arc. But even after
this I am getting lot of errors (ARC issues). For eg mainly in self=[super init]call,the
error is cannot assign to self outside of a method in the init family. Can
anyone tell me am I following the correct steps ?