(IOS)强/弱引用

#define WeakSelf(type) __weak typeof(type) weak##type = type; // weak

 #define StrongSelf(type) __strong typeof(type) type = weak##type; // strong  

你可能感兴趣的:((IOS)强/弱引用)