gpt4 book ai didi

ios - 在 block 中具有强引用的弱变量:不会创建保留周期吗?

转载 作者:行者123 更新时间:2023-12-01 18:13:01 24 4
gpt4 key购买 nike

当我们将弱引用传递给块内的强引用时,为什么它起作用?如果保留了块中的局部变量,是否应该将保留添加到self中,从而创建此不良的保留周期?

这是示例:

__weak id weakSelf = self; 
[self.operationQueue addOperationWithBlock:^{
NSNumber* result = findLargestMersennePrime();
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
MyClass* strongSelf = weakSelf;
strongSelf.textLabel.text = [result stringValue];
}];
}];

最佳答案

创建或复制一个块时(例如,在将其调度到gcd时可以复制它),将捕获引用的变量(除非使用__block指定符声明)。保留强引用,弱引用不保留。

当您创建本地strongSelf变量时,它使self保持 Activity 状态,而块执行(即,虽然未执行且位于属性中,但没有强引用)。当您直接引用self时-捕获并保留了self,现在在块处于 Activity 状态时,它仍保留self

__weak id weakSelf = self; 
[self.operationQueue addOperationWithBlock:^{
NSNumber* result = findLargestMersennePrime();
[[NSOperationQueue mainQueue] addOperationWithBlock:^{

MyClass* strongSelf = weakSelf; // strong reference when block executes
[self foo]; // strong reference when block created/copied

strongSelf.textLabel.text = [result stringValue];
}];
}];

看到不同?如果您使用直接 self引用杀死所有指向对象的强指针,则在块内仍然存在一个强引用,该强引用被捕获并保留。同时,在执行块时,本地 strongSelf指针仅持有对 self的强引用,因此,如果 self已死,则 weakSelf将为nil,而 strongSelf将获得nil值。

关于ios - 在 block 中具有强引用的弱变量:不会创建保留周期吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26867738/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com