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

 
 
 

inShare

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

 
 
@interface PersonClass
...
@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:

 
 
// 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
}

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.

 
 
PersonClass* person;

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:

 
 
@implementation PersonClass

@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:

 
 
// 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
// 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:

 
 
@implementation PersonClass

@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:

 
 
// Getter method
-(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:

 
 
@property (readonly) NNString* firstName;
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:

 
 
@property (getter=isDone) BOOL done;
1
@property (getter=isDone) BOOL done;

This will create the following getter and setter methods:

 
 
// Getter method
-(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 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

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:

 
 
Person* somePerson = [[Person alloc] init];

[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 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;
}

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 …

 
 
@interface Person : NSObject
{
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的更多相关文章

  1. # ios开发 @property 和 Ivar 的区别

    ios开发 @property 和 Ivar 的区别 @property 属性其实是对成员变量的一种封装.我们先大概这样理解: @property = Ivar + setter + getter I ...

  2. 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 ...

  3. 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 ...

  4. (iOS)关于@property和@synthesize的理解(原创)

    开始学习ios的时候,就对一些objc的语法不理解,就比如@property和@synthesize,之前都是记住然后照着用,但是写的代码多了,对objc和ios有了一些理解,再加上最近用MRC,所以 ...

  5. IOS中@property的属性weak、nonatomic、strong、readonly等介绍

    iOS开发中@property的属性weak nonatomic strong readonly等介绍 //property:属性://synthesize:综合; @property与@synthe ...

  6. iOS 中@property() 括号中,可以填写的属性?

    通过@property 和 @synthesize 属性可以简化设置器(set)和访问器(get) 的代码. 在@property 中又有那些属性呢? readwrite 默认 readonly 只读 ...

  7. ios的@property属性和@synthesize属性

    当你定义了一系列的变量时,需要写很多的getter和setter方法,而且它们的形式都是差不多的,,所以Xcode提供了@property 和@synthesize属性,@property用在 .h ...

  8. IOS 关于property的详细解法

    1.格式 @property (参数1,参数2,...) 类型 名字; eg: @property(nonatomic,retain) UIWindow *window; 其中参数主要分为三类: • ...

  9. ios的@property属性和@synthesize属性(转)

    当你定义了一系列的变量时,需要写很多的getter和setter方法,而且它们的形式都是差不多的,,所以Xcode提供了@property 和@synthesize属性,@property用在 .h ...

随机推荐

  1. leetCode130. Surrounded Regions--广度优先遍历算法

    Problem: Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by ' ...

  2. struts学习记录

    see also:http://blog.csdn.net/chenggil10/article/details/5965806#_Toc250472631 0.struts2每一个请求,都new一个 ...

  3. 关于AJAX异步加载节点无法触发点击事件问题的解决方式

    做练习的过程中遇到一个问题,使用AJAX异步新增一个节点,无法触发点击事件,经过查阅之后知道一个方式,使用JS的委托事件,在此做一个记录. $(document).on('click', '.recr ...

  4. C# 写 LeetCode easy #14 Longest Common Prefix

    14.Longest Common Prefix Write a function to find the longest common prefix string amongst an array ...

  5. MVVM模式WPF的ComboBox数据绑定,使用Dictionary作为数据源

    ViewModel//属性定义 Dictionary<int, string> _selGroupList; /// <summary> /// 分组下拉列表 /// < ...

  6. await 与 SynchronizationContext 关系

    static async Task DoStep() { //step 1 Debug.WriteLine("DoStep Start thread id: " + System. ...

  7. 通过pip3安装virtualenvwrapper

    pip3 install virtualenvwrapper 配置virtualenvwrapper创建虚拟环境的目录和指定python3版本 环境编辑当前用户配置变量 mkdir ~/.virtua ...

  8. delay JS延迟执行

    window.onscroll = function () {    throttle(trrigerAdd,window);};function trrigerAdd(){    var $dHei ...

  9. 洛谷P3674 小清新人渣的本愿(莫队)

    传送门 由乃tql…… 然后抄了一波zcy大佬的题解 我们考虑把询问给离线,用莫队做 然后用bitset维护,每一位代表每一个数字是否存在,记为$now1$ 然后再记录一个$now1$的反串$now2 ...

  10. Python——用os模块寻找指定目录(包括子目录)下所有图片文件

    import os # 导入os模块 def search_file(start_dir): img_list = [] extend_name = ['.jpg', '.png', '.gif'] ...