IOS Intro - Property Synthesis
http://www.thecodecrate.com/ios/objective-c/objective-c-property-synthesize/
01. atomic // default
02. nonatomic
03. strong=retain // default
04. weak= unsafe_unretained
05. retain
06. assign // default
07. unsafe_unretained
08. copy
09. readonly
10. readwrite // default
Objective-C @property and @synthesize
14 Feb, 2015 by Michael Oleksy Leave a Comment
In Objective-C, we very often use the following directives – @property and @synthesize, but sometimes it can get a little blurry on why we need them. What are they used for and what do they actually do? In fact, do they have to be used at all? I’ll explain how these work together and what the Objective-C compiler does with them…
Use accessor methods to Get and Set property values
So, if we have this line of code in the @interface section in the .h file
...
@property (nonatomic, retain) NSString* firstName;
...
@end
|
1
2
3
4
5
|
@interface PersonClass
...
@property (nonatomic, retain) NSString* firstName;
...
@end
|
This defines a public class property. This means that the class has a property named ‘firstName’ and the compiler will create a backing instance variable (ivar) for this property for you. Note, the instance variable that this property is accessing need not necessarily be named ‘firstName‘.
So, if we only have the @property declaration (without specifying the @synthesize keyword), in Xcode 4.4 and LLVM 2.0, the compiler will automatically synthesize (create the getter and setter methods as well create the backing ivar for it), and the property will reference the instance variable. This auto-synthesize step creates an instance variable that will be the property name prefixed with an underscore ‘_’. The compiler will synthesize these ‘setter’ and ‘getter’ methods for us, but they won’t appear in the code for us to see. However, what the compiler creates on our behalf looks something like this — maybe not exactly, but close enough:
-(NSString*) firstName
{
return _firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain]; // Retain the new NSString object
[_firstName release]; // Release the NSString object _firstName is referencing
_firstName = newString; // Make the new assignment
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Getter method
-(NSString*) firstName
{
return _firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain]; // Retain the new NSString object
[_firstName release]; // Release the NSString object _firstName is referencing
_firstName = newString; // Make the new assignment
}
|
So the property firstName will access the instance variable ‘_firstName’. This naming convention for the instance variable is automatically created by the compiler. By the way, notice that the getter method has the same name as the property, and the setter method starts with the word set and then uses the capitalized property name, i.e., the methods that are created by the compiler will be firstName for the ‘getter’ method, and setFirstName for the ‘setter’ method.
This allows us to write the following code that reads and writes the name in the ‘PersonClass’ class.
NSString* personName = [person firstName];
[person setFirstName:@"Michael"];
|
1
2
3
4
|
PersonClass* person;
NSString* personName = [person firstName];
[person setFirstName:@"Michael"];
|
Using @synthesize
If we do specify @synthesize in the implementation like so:
@synthesize firstName;
...
@end
|
1
2
3
4
5
6
7
|
@implementation PersonClass
@synthesize firstName;
...
@end
|
then the compiler will also create the “setter” and “getter” methods for us, but the backing ivar that will be created for us will be named firstName. This time, the property name and the instance variable will have the same name. The compiler will create “setter” and “getter” methods that look like this:
-(NSString*) firstName
{
return firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain];
[firstName release];
firstName = newString;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Getter method
-(NSString*) firstName
{
return firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain];
[firstName release];
firstName = newString;
}
|
We can also specify @synthesize in the implementation as:
@synthesize firstName = _my_firstName;
...
@end
|
1
2
3
4
5
6
7
|
@implementation PersonClass
@synthesize firstName = _my_firstName;
...
@end
|
The compiler will create an instance variable called _my_firstName for the firstName property. Whenever the variable is referenced, we need to use the _my_firstName naming convention. This allows us to customize synthesized instance variable names. Now, the compiler will create “setter” and “getter” methods that look like this:
-(NSString*) firstName
{
return _my_firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain];
[_my_firstName release];
_my_firstName = newString;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Getter method
-(NSString*) firstName
{
return _my_firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain];
[_my_firstName release];
_my_firstName = newString;
}
|
Why do we want to do all of this?
Well, for starters, if we can get the compiler to name all our instance variables to have an prefixed underscore (or whatever naming convention we choose), then it’ll allow us to differentiate between instance variables and local variables in the class implementation.
Specifying accessors methods
By default, both the setter and getter accessor methods will be created. We can however specify which accessor methods we want the compiler to create for us. If we don’t want an ivar to be changed using a setter method, we can add an attribute to the property indicating whether it should be readonly, like so:
|
1
|
@property (readonly) NNString* firstName;
|
The compiler will synthesize a getter method, but not a setter method.
If we specify @synthesize, remember I mentioned that the name of the accessor methods will be the same as the name of the property. Well, we can indicate to the compiler that we’d like to change the name of the accessor methods that it creates. One common example is a BOOL property. It’s customary to create a BOOL getter method that starts with the word ‘is’, and the setter method to have the same name as the property itself. For example:
|
1
|
@property (getter=isDone) BOOL done;
|
This will create the following getter and setter methods:
-(BOOL) isDone {
return done;
}
// Setter method
-(void) done:(BOOL)value {
done = value;
}
|
1
2
3
4
5
6
7
8
9
|
// Getter method
-(BOOL) isDone {
return done;
}
// Setter method
-(void) done:(BOOL)value {
done = value;
}
|
Overriding accessors methods
By default, both the setter and getter accessor methods will be created. We can however override one of them if we choose to – perhaps we need additional functionality in either the getter or setter method that the compiler cannot provide. Either way, if we override only one accessor method (irrespective which one), the compiler will still create the other accessor method. So if we have something like this:
@interface Person : NSObject
@property (nonatomic, assign) NSString* firstName;
@end
// Implementation Section
@implementation Person
// Some arbitrary method
-(void) displayName {
NSLog(@"My name is: %@", _firstName);
}
// Getter method defined
-(NSString*) firstName {
return _firstName;
}
@end
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Interface Section
@interface Person : NSObject
@property (nonatomic, assign) NSString* firstName;
@end
// Implementation Section
@implementation Person
// Some arbitrary method
-(void) displayName {
NSLog(@"My name is: %@", _firstName);
}
// Getter method defined
-(NSString*) firstName {
return _firstName;
}
@end
|
The following code will work perfectly well:
[somePerson setFirstName:@"Michael"]; // Setter provided by the compiler
NSLog(@"Name: %@", [somePerson firstName]); // Getter provided by us
|
1
2
3
4
|
Person* somePerson = [[Person alloc] init];
[somePerson setFirstName:@"Michael"]; // Setter provided by the compiler
NSLog(@"Name: %@", [somePerson firstName]); // Getter provided by us
|
If however, we override both accessor methods, then the compiler steps back and lets us do all the hard work. It does not create any setter or getter methods, because we decided to override them, and it doesn’t create any backing ivars for the property either. So, we have to provide all the code, as follows:
@interface Person : NSObject
@property (nonatomic, assign) NSString* firstName;
@end
// Implementation Section
@implementation Person
@synthesize firstName; // 1
-(void) displayName {
NSLog(@"My name is: %@", firstName);
}
// Getter method
-(NSString*) firstName {
return firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain];
[firstName release];
firstName = newString;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Interface Section
@interface Person : NSObject
@property (nonatomic, assign) NSString* firstName;
@end
// Implementation Section
@implementation Person
@synthesize firstName; // 1
-(void) displayName {
NSLog(@"My name is: %@", firstName);
}
// Getter method
-(NSString*) firstName {
return firstName;
}
// Setter method
-(void) setFirstName:(NSString*)newString
{
[newString retain];
[firstName release];
firstName = newString;
}
|
We still have to use the @synthesize (1) directive so that the backing ivar is created. If we don’t use it, then we have to define the instance variable in the @interface section like this …
{
NSString* firstName;
}
@property (nonatomic, assign) NSString* firstName;
@end
|
1
2
3
4
5
6
7
8
|
@interface Person : NSObject
{
NSString* firstName;
}
@property (nonatomic, assign) NSString* firstName;
@end
|
which brings us back to pre-Xcode 4.4 without the auto-synthesize change.
That’s all for now regarding the synthesized accessor methods, hope you’ve found this useful. Thanks for reading…
---恢复内容结束---
IOS Intro - Property Synthesis的更多相关文章
- # ios开发 @property 和 Ivar 的区别
ios开发 @property 和 Ivar 的区别 @property 属性其实是对成员变量的一种封装.我们先大概这样理解: @property = Ivar + setter + getter I ...
- auto property synthesis will not synthesize proterty ;it will be implementedby its superclass, use @
Auto property synthesis will not synthesize property 'title'; it will be implemented by its supercla ...
- Xcode升级了6.3 出现的警告:Auto property synthesis will not synthesize property
1. Auto property synthesis will not synthesize property 'title'; it will be implemented by its supe ...
- (iOS)关于@property和@synthesize的理解(原创)
开始学习ios的时候,就对一些objc的语法不理解,就比如@property和@synthesize,之前都是记住然后照着用,但是写的代码多了,对objc和ios有了一些理解,再加上最近用MRC,所以 ...
- IOS中@property的属性weak、nonatomic、strong、readonly等介绍
iOS开发中@property的属性weak nonatomic strong readonly等介绍 //property:属性://synthesize:综合; @property与@synthe ...
- iOS 中@property() 括号中,可以填写的属性?
通过@property 和 @synthesize 属性可以简化设置器(set)和访问器(get) 的代码. 在@property 中又有那些属性呢? readwrite 默认 readonly 只读 ...
- ios的@property属性和@synthesize属性
当你定义了一系列的变量时,需要写很多的getter和setter方法,而且它们的形式都是差不多的,,所以Xcode提供了@property 和@synthesize属性,@property用在 .h ...
- IOS 关于property的详细解法
1.格式 @property (参数1,参数2,...) 类型 名字; eg: @property(nonatomic,retain) UIWindow *window; 其中参数主要分为三类: • ...
- ios的@property属性和@synthesize属性(转)
当你定义了一系列的变量时,需要写很多的getter和setter方法,而且它们的形式都是差不多的,,所以Xcode提供了@property 和@synthesize属性,@property用在 .h ...
随机推荐
- Android 中 吐司显示不出来的原因分析
当你发现你的toast的show方法的确被执行了,但是却没有在界面中显示出来, 有问题的地方可能有两点: 1.Context上下文对象有问题,不是当前的上下文对象或者什么的: 2.message(即T ...
- 小小c#算法题 - 10 - 求树的深度
树型结构是一类重要的非线性数据结构,树是以分支关系定义的层次结构,是n(n>=0)个结点的有限集.关于树的基本概念不再作过多陈述,相信大家都有了解,如有遗忘,可翻书或去其他网页浏览以温习. 树中 ...
- Server.MapPath方法的应用方法
老是忘记Server.MapPath的使用方法了,下面记录一下,以备后用:总注:Server.MapPath获得的路径都是服务器上的物理路径,也就是常说的绝对路径1.Server.MapPath(&q ...
- c# 捕获非托管异常
在.NET 4.0之后,CLR将会区别出一些异常(都是SEH异常),将这些异常标识为破坏性异常(Corrupted State Exception).针对这些异常,CLR的catch块不会捕捉这些异常 ...
- C#面向对象之三大特性: 封装
学到封装就会想到访问修饰符,说到访问修饰符,就会想到访问等级,或者说是访问能力的大小.当然也少不了默认的访问类型. C# 方法默认访问级别 : private (私有的) C# 类默认访问级别 : i ...
- C++: STL迭代器及迭代器失效问题
转载至:http://blog.csdn.net/wangshihui512/article/details/9791517 迭代器失效: 典型的迭代器失效. 首先对于vector而言,添加和删除操作 ...
- ASP.NET网页动态添加数据行
一看到这标题<ASP.NET网页动态添加数据行>,想起来似乎有点难实现.因为网页的周期性原因,往往在PostBack之后,状态难于有所保留.但Insus.NET又想实现这样的效果,用户点击 ...
- Win10下Tensorflow+GPU的环境配置
不得不说,想要为深度学习提前打好框架确实需要花费一番功夫.本文主要记录了Win10下,Cuda9.0.Cudnn7.3.1.Tensorflow-gpu1.13.1.python3.6.8.Keras ...
- help手册使用
属性的方法名的一般规律: 设置的属性名: set+属性名 获取属性值: 1.如果是bool类型,可能是 is+属性名 或者 属性名 2.不是bool类型,就是属性名
- vee-validate使用教程
vee-validate使用教程 *本文适合有一定Vue2.0基础的同学参考,根据项目的实际情况来使用,关于Vue的使用不做多余解释.本人也是一边学习一边使用,如果错误之处敬请批评指出* 一.安装 n ...
