gpt4 book ai didi

iphone - PresentModalViewController : Where to release?

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

要使用 presentModalViewController,我必须 allocinitWithNibName:bundle: 一个 View 。我的问题是:我在哪里发布它? dismissModalViewController:animated: 是否处理释放?

最佳答案

没有。如果您分配并初始化它,则必须释放它。这样做:

YourViewController *controller = [[YourViewController alloc] initWithNibName:@"YourView" bundle:nil];
[self presentModalViewController:controller animated:YES];
[controller release];

PresentModalViewController:animated: 自动增加 retainCount。一旦 Controller 从 View 中消失,它就会释放 Controller 。因此 Controller 将被释放。 ;-)

关于iphone - PresentModalViewController : Where to release?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3414961/

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