###1.ios synthesize有什么作用 当定义了一系列的变量时,需要写很多的getter和setter方法,而且它们的形式都是差不多的,所以Xcode提供了@property和@synthesize属性,@property用在 .h 头文件中用作声明,@synthesize用在.m 文件中用于实现.在X-code4.5以前,在.h中声明完属性之后,如:@property(nonatomic,assign) int age;@property(nonatomic,assign) NSSt…