gpt4 book ai didi

ios - 将强引用转换为对 self 的弱引用

转载 作者:行者123 更新时间:2023-11-30 12:49:23 24 4
gpt4 key购买 nike

如何将其转换为对 self 的弱引用?

NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(MyViewController.handleMessage(_:)), name: "NewMessage", object: nil)

NSNotificationCenter.defaultCenter().removeObserver(self, name: "NewMessage", object: nil)

还有一个相关的问题—— View Controller 什么时候真正被销毁?我假设当您进出不同的 View 时, View Controller 仍然保持事件状态,对吧?即它们不会在 viewDidDisappear 上被销毁。

最佳答案

这是 View Controller 中的函数,它实际上是从内存中取出的,所以在这里你可以删除观察者

                deinit {
// you code

}

为了对自己进行弱引用,您可以使用

                weak var this = self

关于ios - 将强引用转换为对 self 的弱引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41189240/

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