ios的@property屬性和@synthesize屬性
來源:互聯網
上載者:User
當你定義了一系列的變數時,需要寫很多的getter和setter方法,而且它們的形式都是差不多的,,所以Xcode提供了@property和@synthesize屬性,@property用在 .h 標頭檔中用作聲明,@synthesize用在.m 檔案中用於實現。
如下,建立一個基於“Command Line Tool”的項目,名為“property”,再建立一個Student類,傳統的寫法是:
Student.h
複製代碼
// Student.h
// property
//
// Created by Rio.King on 13-8-25.
// Copyright (c) 2013年 Rio.King. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Student : NSObject
{
int age;
int no;
}
//age的getter和setter方法聲明
- (int)age;
- (void)setAge:(int)newAge;
//no的getter和setter方法聲明
- (int)no;
- (void)setNo:(int)newNo;
@end
複製代碼
Student.m
複製代碼
//
// Student.m
// property
//
// Created by Rio.King on 13-8-25.
// Copyright (c) 2013年 Rio.King. All rights reserved.
//
#import "Student.h"
@implementation Student
//age的getter和setter方法的實現
- (int)age
{
return age;
}
-(void)setAge:(int)newAge
{
age = newAge;
}
//no的getter和setter方法的實現
- (int)no
{
return no;
}
- (void)setNo:(int)newNo
{
no = newNo;
}
@end
複製代碼
main.m
複製代碼
//
// main.m
// property
//
// Created by Rio.King on 13-8-25.
// Copyright (c) 2013年 Rio.King. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Student.h"
int main(int argc, const char * argv[])
{
@autoreleasepool {
// insert code here...
Student *stu = [[Student alloc] init];
stu.age = 100;//這句相當於setter方法
NSLog(@"age is %i", stu.age);//這裡的 stu.age 相當於getter方法
[stu release];
}
return 0;
}
複製代碼
************************************************************************************
用@property和@synthesize的寫法是:
Student.h
複製代碼
//
// Student.h
// property
//
// Created by Rio.King on 13-8-25.
// Copyright (c) 2013年 Rio.King. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Student : NSObject
{
int age;
int no;
}
//當編譯器遇到@property時,會自動延伸成getter和setter的聲明
@property int age;
@property int no;
@end
複製代碼
Student.m
複製代碼
//
// Student.m
// property
//
// Created by Rio.King on 13-8-25.
// Copyright (c) 2013年 Rio.King. All rights reserved.
//
#import "Student.h"
@implementation Student
//@synthesize 會自動產生getter和setter的實現
//@synthesize 預設會去訪問age,no,height同名的變數,,
//如果找不到同名的變數,會在內部自動產生一個私人同名變數age,no,height,,
//因此Student.h 中的這幾個變數也可以省略不寫。
@synthesize age,no;
@end
複製代碼
main.m
複製代碼
//
// main.m
// property
//
// Created by Rio.King on 13-8-25.
// Copyright (c) 2013年 Rio.King. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Student.h"
int main(int argc, const char * argv[])
{
@autoreleasepool {
// insert code here...
Student *stu = [[Student alloc] init];
stu.age = 100;
NSLog(@"age is %i", stu.age);
[stu release];
}
return 0;
}
複製代碼
幾點說明:
1.在Xcode4.5及以後的版本中,可以省略@synthesize ,編譯器會自動幫你加上getter 和 setter 方法的實現,並且預設會去訪問_age這個成員變數,如果找不到_age這個成員變數,會自動產生一個叫做 _age的私人成員變數。
2.視頻教學中建議變數名用"_"首碼作為開頭,但我看big Nerd 那本書裡是不用的,個人也比較習慣 big Nerd 的那種寫法,所以變數名就不加首碼了。
文法簡介:
格式: 聲明property的文法為:@property (參數1,參數2) 類型 名字; 如:
C代碼
@property(nonatomic,retain) UIWindow *window;
其中參數主要分為三類:
讀寫屬性: (readwrite/readonly)
setter語意:(assign/retain/copy)
原子性: (atomicity/nonatomic)
各參數意義如下:
readwrite: 產生setter\getter方法
readonly: 只產生簡單的getter,沒有setter。
assign: 預設類型,setter方法直接賦值,而不進行retain操作
retain: setter方法對參數進行release舊值,再retain新值。
copy: setter方法進行Copy操作,與retain一樣
nonatomic: 禁止多線程,變數保護,提高效能