@property后面可以有哪些修饰符?
Posted 黄增松的技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@property后面可以有哪些修饰符?相关的知识,希望对你有一定的参考价值。
- 原子性---nonatomic特质
- 如果不写默认情况为atomic(系统会自动加上同步锁,影响性能)
- 在ios开发中尽量指定为nonatomic,这样有助于提高程序的性能
- 读/写权限---readwrite(读写)、readooly (只读)
- 内存管理语义---assign、strong、 weak、unsafe_unretained、copy
- 方法名---getter=、setter=
@property (nonatomic, getter=isOn) BOOL on;
// setter=<name>这种不常用,也**不推荐**使用。故不在这里给出写法
- 不常用的:nonnull,null_resettable,nullable
以上是关于@property后面可以有哪些修饰符?的主要内容,如果未能解决你的问题,请参考以下文章