弱引用__weak __typeof(&*self)weakSelf = self

关于弱引用的规范文章

文章

// 不知道这行代码的使用场景的同学你该去自习看看ARC的注意事项和Block的使用了// AFNetworking的写法__weak__typeof(&*self)weakSelf=self;// 我之前一直这么写的__weak__typeof(self)weakSelf=self;// 或者这么写__weakXxxViewController*weakSelf=self;// 或者这么写__weakidweakSelf=self;

你可能感兴趣的:(弱引用__weak __typeof(&*self)weakSelf = self)