gpt4 book ai didi

objective-c - 将自身属性传递给 block 时的 ARC 实现

转载 作者:搜寻专家 更新时间:2023-10-30 19:41:37 25 4
gpt4 key购买 nike

我最近转向了 ARC,对于在将自身对象传递给 block 时为其设置正确的属性值感到有些困惑。

在我看来,任何用 _weak 声明的属性都不应该在 dealloc 方法中设置为 nil。传递给 block 的 self 对象应该用 _weak 声明,而不是 __block

请让我知道这种理解是否正确,我在下面的实现中以正确的方式进行。

(void)myApplication {
self.data = [NSMutableDictionary dictionary];

__weak MyViewController *aBlockSelf = self;

[self.data setValue:[MyAction customActionWithBlock:^(MyAction *iAction, NSString *iIdentifier) {
AnotherViewController *aController = [[AnotherViewController alloc] initWithType:@"aType"];
aController.hasSearch = NO;
aController.delegate = aBlockSelf;
aController.showInventoryImage = YES;
[aBlockSelf presentNavigationalModalViewController: aController];

}] forKey:@"aKey"];
}

最佳答案

In my understanding, any property declared with __weak should not be set to nil in dealloc method.

是的,您绝对没有理由想要这样做。这不是问题,但它什么也做不了。

And self objects passed to a block should be declared with __weak and not __block.

是的,在 ARC 中,使用 __weak 降低了保留循环(又名强引用循环)的风险。这在将 block 保存到某个变量时很重要,例如在您的示例中,或者如果 block 异步运行。参见 Avoid Strong Reference Cycles when Capturing self使用 Objective-C 编程指南中。

Please let me know if this understanding is correct and I am doing it the right way in the below implementation.

我在您的代码块中的唯一建议是您通常会为此目的看到一个名为 weakSelf 的变量,而不是 aBlockSelf。没什么大不了的,但它使代码更加不言自明。

关于objective-c - 将自身属性传递给 block 时的 ARC 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16803666/

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