我认为 __Weak 指示符仅适用于 iOS5,您必须在以前的 iOS 版本上使用 __unsafe_unretained。但在这条评论https://stackoverflow.com/a/8543037/904972 NJones 暗示 iOS 4.3+ 处理 __weak 引用,而您必须在 iOS < 4.2 上使用 __unsafe_unretained。是这种情况还是我误解了帖子。如果是这种情况,您能否提供指向苹果“官方”答案的链接。
Best Answer-推荐答案 strong>
来自 http://developer.apple.com/library/mac/#releasenotes/ObjectiveC/RN-TransitioningToARC/_index.html
ARC is supported in Xcode 4.2 for Mac OS X v10.6 and v10.7 (64-bit applications) and for iOS 4 and iOS 5. Weak references are not supported in Mac OS X v10.6 and iOS 4.
关于objective-c - 哪些 iOS 版本支持带有 __weak 指示符的 ARC?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8760996/
|