strong(在LLVM中)和retain(在GCC中)之间有什么区别?

时间:2012-04-24 13:45:44

标签: iphone ios ios4

strong(在LLVM编译器中)和retain(在GCC编译器中)之间有什么区别?

2 个答案:

答案 0 :(得分:10)

strong是iOS 5自动引用计数(ARC)中的新功能,其行为与iOS 4中的retain相同。Referenced Article.

另外,请查看其他问题:@property definitions with ARC: strong or retain?

答案 1 :(得分:-1)

strong是与arc一起引入的新关键字(自动引用计数)。如果你搜索谷歌有很多关于它的文章,包括这个http://cupsofcocoa.com/2011/11/27/the-jungle-part-4-automatic-reference-counting/