Xcode ARC (automatic reference counting), “release is unavailable”

前端 未结 2 600
死守一世寂寞
死守一世寂寞 2020-12-05 12:29

For my first time using Xcode I was following a tutorial online. I did everything as the tutorial showed me, but I am afraid that it\'s too outdated.

The error I enc

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-05 12:44

    The two options given by NJones are valid and effective ways of dealing with ARC incompatibility. However, you do have a third option. Disabling ARC for specific files.

    Giving the flags -fno-objc-arc to your non ARC compatible compile sources affectively marks them as such upon compilation.

    You can find your compile sources under TargetsYour AppBuild PhasesCompile Sources.

提交回复
热议问题