Xcode 4.2 with ARC: will my code run even on iOS devices with firmware older than 5.0?

前端 未结 1 1755
暗喜
暗喜 2020-12-11 08:05

I updated my Xcode to 4.2 version, which includes the ARC technology. It seems to be a good thing, but if I enable ARC and edit my code according to Apple\'s suggestions, wi

相关标签:
1条回答
  • 2020-12-11 08:28

    ARC applications will run on OS 4.0 (4.3?) and up. On 4.3 you will lose the zeroing-weak-reference feature though. So if you rely on __weak, you shouldn't expect to work properly on < 5.0.

    0 讨论(0)
提交回复
热议问题