gpt4 book ai didi

iphone - 以编程方式创建的 subview 和 viewDidUnload

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:10:25 25 4
gpt4 key购买 nike

对于 View Controller ,必须释放您在 Interface Builder 中设置的任何导出并在 viewDidUnload 中设置为 nil,并且还必须在 dealloc 中释放。

(参见:When should I release objects in viewDidUnload rather than in dealloc?)

One of the most important reasons for implementing [viewDidUnload] is that UIViewController subclasses commonly also contain owning references to various subviews in the view hierarchy. These properties could have been set through IBOutlets when loading from a nib, or programmatically inside loadView [emphasis added], for instance.

我的问题是,我们是否真的需要为在 loadView(没有 Interface Builder)中以编程方式创建的 View 层次结构中的 subview 实现 viewDidUnload

最佳答案

这取决于您创建它们的方式以及您是否需要在其他地方引用它们。

例如:

- (void)loadView
{
[super loadView];

UIButton *someButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
someButton.frame = CGRectMake(0, 0, 50, 50);
[self.view addSubview: someButton];
}

在上述情况下,您不需要实现 viewDidUnload,因为 someButton 在 loadView 中自动释放。

另一个例子:

- (void)loadView
{
[super loadView];

self.someButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
someButton.frame = CGRectMake(0, 0, 50, 50);
[self.view addSubview: someButton];
}

在这个例子中,你会想要使用 viewDidUnload,因为你有另一个对 someButton 的引用。您希望 viewDidUnload 释放该按钮并重置引用,这样您就不会不当使用它并释放内存。在这种情况下,您还需要在 dealloc 方法中释放按钮,以防永远不会调用 viewDidUnload。

关于iphone - 以编程方式创建的 subview 和 viewDidUnload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6442912/

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