关于@synthesize和@dynamic的区别

There are a lot of answers, but also a big confusion. I’ll try to put some order (or increase the mess, we’ll see…)

  • Let’s stop talking about Xcode. Xcode is an IDE. clang is a compiler. This feature we are discussing is called autosynthesis of properties and it’s an Objective-C language extension supported by clang, which is the default compiler used by Xcode.
    Just to make it clear, if you switch to gcc in Xcode, you won’t benefit from this feature (regardless from the Xcode version.) In the same way if you use a text editor and compile using clang from the command line, you will.

  • Thank to autosynthesis you don’t need to explicitly synthesize the property as it will be automatically synthesized by the compiler as

@synthesize propertyName = _propertyName

However, a few exceptions exist:

  • readwrite property with custom getter and setter
    when providing both a getter and setter custom implementation, the property won’t be automatically synthesized

  • readonly property with custom getter
    when providing a custom getter implementation for a readonly property, this won’t be automatically synthesized

  • @dynamic
    when using @dynamic propertyName, the property won’t be automatically synthesized (pretty obvious, since @dynamic and @synthesize are mutually exclusive)

  • properties declared in a @protocol
    when conforming to a protocol, any property the protocol defines won’t be automatically synthesized

  • properties declared in a category
    this is a case in which the @synthesize directive is not automatically inserted by the compiler, but this properties cannot be manually synthesized either. While categories can declare properties, they cannot be synthesized at all, since categories cannot create ivars. For the sake of completeness, I’ll add that’s it’s still possible to fake the property synthesis using the Objective-C runtime.

  • overridden properties (new since clang-600.0.51, shipping with Xcode 6, thanks Marc Schlüpmann)
    when you override a property of a superclass, you must explicitly synthesize it

It’s worth noting that synthesizing a property automatically synthesize the backing ivar, so if the property synthesis is missing, the ivar will be missing too, unless explicitly declared.

Except for the last three cases, the general philosophy is that whenever you manually specify all the information about a property (by implementing all the accessor methods or using @dynamic) the compiler will assume you want full control over the property and it will disable the autosynthesis on it.

A part from the cases I listed above, the only other use of an explicit @synthesize would be to specify a different ivar name. However conventions are important, so my advice is to always use the default naming.

转自:http://stackoverflow.com/questions/19784454/when-should-i-use-synthesize-explicitly

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值