我知道你应该在 block 中使用 weakSelf 来避免保留内存循环。喜欢:
__weak id weakSelf = self;
self.block = ^{
[weakSelf something];
}
但我试图找到一种通用的方法。我可以使用如下宏:
#define Weakify(o) __weak __typeof__((__typeof__(o))o)
#define WeakifySelf(o) Weakify(self) o = self;
WeakifySelf(weakSelf)
self.block = ^{
[weakSelf something];
}
这简化了,但我想知道为什么我不能在我的 viewController 上使用 ivar。
@interface YDViewController : UIViewController
{
__weak id _weakSelf;
}
然后使用这个 iVar
self.block = ^{
[_weakSelf something];
}
任何想法?