@property里assgin 、copy、strong的区别

来源:互联网 发布:python exe 编辑:程序博客网 时间:2024/05/17 08:14

assgin适用于基础数据类型类型、枚举、结构体、C语言中的数据类型

eg: NSInteger、CGPoint 、CGFloat 、int、float等

 

copy适用于NSString、NSArray、NSDictionary


strong适用于大多数OC对象 在MRC下使用retain

0 0