XCode自动synthesize property

最近把XCode升级到了4.5,今天写一个objective-c类的时候发现自己忘记@synthesize property,XCode居然没有报错,很差异,估计是苹果改了设计,一搜索果真,XCode4.4 release note:The compiler automatically calls @synthesize by default for unimplemented @properties。

default 是 @synthesize propertyName = _propertyName

 

以后写程序可以少输入些不必要的code了。

苹果有时候对开发人员还是考虑的,虽然远不及对用户那么周到。

 

补充:

1. XCode并不自动添加语句到文件,而是在编译时自动生成,所以会看不到@synthesize 语句。

2. 在m文件里引用property时必须使用self.varName 或 _varName, 而不能直接使用varName

posted @ 2012-09-24 20:21  Russell Jing  阅读(709)  评论(0编辑  收藏  举报