How to enable/ disable “Automatic Reference Counting”?

前端 未结 3 548
难免孤独
难免孤独 2020-12-15 16:32

Using Xcode 4.2, how can one enable/disable \"Automatic Reference Counting\"?

ANSWERED Under Build Settings, flip \"yes\" and \"no\" depending whet

3条回答
  •  执念已碎
    2020-12-15 17:09

    Globally:

    Go to "Build Settings", look for "Apple LLVM compiler 3.0 - Language". Set the field "Objective-C Automatic Reference Counting" to "No".

    enter image description here

    For individual files:

    Go to "Build Phases", select the file, double-click the "Compiler Flags" column and put "-fno-objc-arc" in it.

提交回复
热议问题