In xCode 4.2 includes a new “Migrate to Objective-C ARC” tool in the Edit->Refactor. So is this same as adding the flag -fno-objc-arc
In xCode 4.2 includes a new Migrate to Objective-C ARC tool in the Edit->Refactor
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, it’s the opposite actually.
The
Mirgrate to Objective-C ARC-tool goes through the selected files and converts them to ARC-supported files. Adding the-fno-objc-arc-flag to a file tells the compiler that the file does not support ARC. This is useful for large frameworks that haven’t been updated to support ARC.