OC - @property定义

对于OC中的Model,需要定义多个@property参数,其格式如下:

@property (strong, nonatomic) NSString *name;

因为定义的是一个指针,所以其中strong指的是指针的属性。

strong:

你可能感兴趣的:(OC - @property定义)