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 ...
随机推荐
- spark sql使用sequoiadb作为数据源
目前没有实现,理一下思路,有3中途径: 1:spark core可以使用sequoiadb最为数据源,那么是否spark sql可以直接操作sequoiadb. 2: spark sql支持Hive, ...
- [译]Javascript 参数(arguments)对象
本文翻译youtube上的up主kudvenkat的javascript tutorial播放单 源地址在此: https://www.youtube.com/watch?v=PMsVM7rjupU& ...
- Java50道经典习题-程序43 求奇数个数
题目:求0—7所能组成的奇数个数,奇数中不包含重复数字. public class Prog43 { public static void main(String[] args) { //0-7能组成 ...
- win8使用every'thing无法显示搜索结果的解决方法
关键词: win8,everything,无搜索结果 进入everything ,tools->option右下角有个 restore defaults 如果安全软件阻拦,点击 允许 就行了, ...
- Input is not proper UTF-8, indicate encoding !错误处理
xml 中如果包含部分 ascii 控制字符(小数字)则 chrome会报告如下类型错我: This page contains the following errors: error on line ...
- 使用cydia substrate 来进行android native hook
cydia不仅可以hook java代码,同样可以hook native代码,下面举一个例子来进行android native hook 我是在网上找到的supermathhook这个项目,在他基 ...
- 搭建TensorFlow
网上有许多在线安装TensorFlow框架的,我试了好多,结果安装时间长先不说,还总是出现一些问题,然后我就想着离线安装,成功了,与大家分享! (1)首先,需要下载离线安装的TensorFlow包,可 ...
- java 学习第一篇简单基础
Java基础 Java Java 和C#有着极为相似的语法. 和C#都是面向对象的高级程序语言. JAVA是一个开源,公开的语言,有着极其丰富的开源库和其他资源. JAVA分类 JAVA分SE EE ...
- C#中工厂模式的作用
1.比如,主要用于对扩展性有要求的功能. 以简单工厂为例: 接口Fun有三个实现 class FunA FunB FunC工厂 class Fac { public static Fun getF ...
- Linux根目录结构
1: bin目录 此目录存放所有二进制命令(用户) 2: boot目录 Linux内核及引导系统程序所需的目录 3: dev目录 所有设备文件的目录(如声卡.磁盘.光驱) 4: etc目录 二 ...
