I've read and heard since ARC was first announced that it was a compile-time thing and would be backwards-compatible with iOS 4. I have successfully refactored my project to ARC using Xcode 4.2's automatic refactoring, and when compiled against the iOS 5.0 SDK, it works fine. However, if I try to compile against my iOS 4.2 SDK, it fails at link time, missing the following symbols:

  • _objc_retainAutoreleaseReturnValue
  • _objc_autoreleaseReturnValue
  • _objc_storeStrong
  • _objc_retain
  • _objc_release
  • _objc_retainAutoreleasedReturnValue

I checked, and these symbols are present in 5.0 but not 4.2:

iPhoneOS5.0.sdk/usr/lib $ find . -type f|xargs nm|grep -i _objc_retain$
00005ed0 T _objc_retain
000061d0 T _objc_retain

iPhoneOS4.2.sdk/usr/lib $ find . -type f|xargs nm|grep -i _objc_retain$
[... *crickets* ...]

Does this mean that Apple lied? I assume instead that I'm confused and doing something wrong, but I can't figure out what.

This is with the GM release of Xcode 4.2 (Build 4C199)

link|improve this question
I think it requires iOS 4.3. – ughoavgfhw Oct 12 '11 at 23:34
1  
In addition to what others have said, don't install the 4.2 SDK. Use the 5.0 SDK. Set your deployment target. I don't mean for this, I mean in general; older SDKs should not be used. – Steven Fisher Oct 12 '11 at 23:40
Wow, I can't believe I've gone this long without knowing that newer SDKs could build for older OS versions. Here I've been mad at Apple that they've been deleting all my old SDK versions :/ Thank you! – Doug McBride Oct 12 '11 at 23:46
feedback

1 Answer

up vote 10 down vote accepted

ARC is supported on iOS 4.0 and above. You need to use the iOS 5.x SDK but can select iOS 4.3 for the Deployment Target. The one thing that is not supported in 4.x is automatic weak reference zeroing.

Oh, Xcode 4.2 is now out of NDA and can be used to submit apps.

link|improve this answer
Thanks (facepalm). It actually seems to be working with 4.2 as a deployment target as well, however... going to test on a real device now. – Doug McBride Oct 12 '11 at 23:47
It seems to run fine on my device as well, running iOS 4.2.1. – Doug McBride Oct 13 '11 at 0:24
I suppose that there is no problem, Apple generally refers to a recent version even if a prior version is also supported. But, it may not be approvable for the app store. – Zaph Oct 13 '11 at 0:28
I'll update this if I get rejected :) Thanks again. – Doug McBride Oct 13 '11 at 0:41
Sorry, looks like @CocoaFu was correct. After I restarted Xcode, it seems to only work in 4.3. Xcode 4 seems easily confused :( – Doug McBride Oct 13 '11 at 1:17
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.