gpt4 book ai didi

ios - 如何取消初始化子 UIViewController?

转载 作者:可可西里 更新时间:2023-11-01 01:49:21 28 4
gpt4 key购买 nike

我有几个 UIViewController 添加到内容 View 。调用我的 remove 函数后,我注意到子 UIViewControllerdeinit 函数没有被调用,除非我明确设置子 UIViewController< 的值nil

这是正确的行为还是我做错了什么?

func removeViewController(fromCell cell:UICollectionViewCell, at indexPath:IndexPath){
guard let childViewController = currentViewControllers[indexPath] else { return }
print("remove view controller called")
childViewController.willMove(toParent: nil)
childViewController.view.removeFromSuperview()
childViewController.removeFromParent()
currentViewControllers[indexPath] = nil
// recycledViewControllers.insert(childViewController)
}

最佳答案

问题是您有两个对 subview Controller 的引用:

  • 由父 View Controller (childViewControllers,或现代 Swift 中的 children)自动维护的引用

  • 您自己添加的附加引用 (currentViewControllers)。

因此,在 subview Controller 消失之前,您必须让两者 都消失。这就是您的代码所做的:

childViewController.willMove(toParent: nil)
childViewController.view.removeFromSuperview()
childViewController.removeFromParent()
// now `childViewControllers` / `children` has let go

currentViewControllers[indexPath] = nil
// now `currentViewController` has let go

所以你本身并没有做错任何事,除非你首先通过使用这个 currentViewControllers 添加了这个额外的强引用。但我明白您这样做的原因:您想要一种将索引路径与 subview Controller 配对的方法。

因此您可以很好地接受您的方法,或者如果您真的想要,您可以将 currentViewControllers 设置为只有 weak 对其值的引用(通过使用 NSMapTable 代替字典)。

关于ios - 如何取消初始化子 UIViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55907469/

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