IOS, ARC, Property: (readwrite, nonatomic) vs (radwrite, retain, nonatomic)(IOS,ARC,属性:(readwrite,nonatomic)vs(radwrite,retain,nonatomic))
问题描述
我已经阅读了一些关于 ARC 的教程,但对属性声明仍然有些困惑.我使用以下模式编写了大部分代码:
I am have read up some tutorials on ARC and am still left a bit confused on properties declarations. I wrote most most my code using the following pattern:
@property (readwrite, nonatomic) PlayerData* playerData;
@property (readwrite, nonatomic) MusicLayer* musicLayer;
@property (readwrite, nonatomic) bool isPowerUpAvailable;
现在我终于开始处理内存泄漏了,XCode 建议我在一些代码中应该在属性声明中添加retain"关键字.
Now that I finally started to deal with memory leaks XCode suggested me that in some bits of code I should have added the "retain" keyword in the property declaration.
使用 ARC,我认为我不应该再打扰"保留计数了.是否有一些我没有得到或缺少的概念?任何教程参考或解释将不胜感激.
Using ARC I thought I shouldn't "Bother" about retain counts anymore. Is there some concept I am not getting or missing? Any tutorial references or explanation would be greatly appreciated.
推荐答案
ARC会根据属性声明来保留对象,需要保留的属性使用strong
,对于不需要保留的属性weak
.
ARC is will retain object based on the property declaration, you should use strong
for properties that need to be retained and weak
for properties that do not need to be retained.
weak
属性在对象被释放时也会被清零.
weak
properties are also nilled when the object is deallocated.
编译器将始终假定属性为 readwrite
,因此无需以这种方式声明.
The compiler will always assume that properties are readwrite
so there is no need to declare then this way.
@property (strong, nonatomic) PlayerData* playerData;
@property (strong, nonatomic) MusicLayer* musicLayer;
// Need use assign since strong is for objects only.
@property (assign, nonatomic) bool isPowerUpAvailable;
这篇关于IOS,ARC,属性:(readwrite,nonatomic)vs(radwrite,retain,nonatomic)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IOS,ARC,属性:(readwrite,nonatomic)vs(radwrite,retain,nonatomic)
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01