@property 修饰符

阅读更多

 

   访问权限 -- 修饰是否生成对应的 getter 方法

 

  • readonly    只生成 setter 方法、不生成 getter
  • readwrite   既生成 getter 方法,又生成 setter

 

   线程安全 

 

  • atomic              原子性,消耗大,执行效率低
  • nonatonmic      非原子性,非线程安全

 

   内存管理( ARC )

 

  • assign
  • strong
  • weak         弱引用
  • copy          较少上下文的依赖引入的,内容的拷贝
   内存管理(MRC)
  • assign
  • retain
  • release
   地址:
   http://www.cocoachina.com/bbs/read.php?tid=1688478
   https://www.jianshu.com/p/3cbc79424fb8
  
   

你可能感兴趣的:(@property 修饰符)