天天看點

strong weak assign copy等修飾詞什麼時候用

//strong  oc對象
//weak  UI控件 ,代理對象
//assign  基本類型  數值類型 BOOL 結構體  枚舉
//copy 字元串


@property (weak, nonatomic) IBOutlet UILabel *countView;
@property (weak, nonatomic) IBOutlet UIButton *coinView;
@property (weak, nonatomic) IBOutlet UILabel *titleView;
@property (weak, nonatomic) IBOutlet UIButton *iconView;