gpt4 book ai didi

objective-c - 内存警告是否会破坏呈现 View Controller ?

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

我有一个 iPad 应用程序,它有一个主视图 Controller ,然后是一个设置 View Controller 。当我的主视图显示设置 View 时,我会全屏显示设置 View 。设置 View 中有一个关闭按钮,可以使用 - 直到出现内存警告。如果设置按钮在屏幕上时出现内存警告,它将拒绝关闭。

换句话说,这是可行的:

  • 应用启动 -> 显示主视图 -> 显示设置 View -> 关闭设置 View

这不是:

  • 应用启动 -> 显示主视图 -> 显示设置 View -> 内存警告 -> 关闭设置 View

设置 View 将保留在那里。

我在第一代 iPad 上的 iOS 5 上运行这个应用程序。 (我不支持 iOS 4。)

我该如何解决这个问题?

编辑:

这是我显示设置 View 的代码:

- (void) showSettings{

if (!self.settingsViewController) {

//Create the navigation controller and the root view for the settings panel
SettingsViewController *settingsRootView = [[SettingsViewController alloc] initWithStyle:UITableViewStyleGrouped];
UINavigationController *settingsView = [[UINavigationController alloc] initWithRootViewController:settingsRootView];
[settingsRootView release];

//Configure the animation and modal style, and the navigation bar's color

[settingsView.navigationBar setTintColor:kDarkGrayColor];

//Enable the settings flag
[self setSettingsIsActive:YES];

//Configure the presentation
[settingsView setModalPresentationStyle:UIModalPresentationFullScreen];
[settingsView setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];

self.settingsViewController = settingsView;

[settingsView release];
}

//present and release the settings panel
[self presentViewController:self.settingsViewController animated:YES completion:^{

}];

}

下面是我如何隐藏它:

//This method reloads some stuff and 
- (void) dismissSettings{

//
// ... Reload some other stuff...
//

//Dismiss the settings panel
[self dismissViewControllerAnimated:YES completion:^{

//
// ... Reload some other stuff...
//

}];
}

最佳答案

原则上,内存警告不会对您的 View Controller 做任何事情,但它会卸载那些当前未在屏幕上显示的 View Controller 的 View 。

在您的特定情况下,我会在您的设置 View Controller 的代码中查找任何可能引用主视图 Controller View 中的内容的内容。如果是这种情况,则在发生内存警告后,该引用可能为 nil。

此外,您应该验证 didReceiveMemoryWarning 方法的实现,看看您是否正在处理关闭该设置 View 可能需要的东西。

在内存不足的情况下,那些“非事件” View Controller 中的所有 View 都将被卸载。由于您的 dismissSettings 方法是在主 Controller 上声明的,因此当它被调用时,您的主视图中的所有元素很可能都是零。我不知道“Reload some other stuff”代码中包含什么样的操作,但我猜想与 View 相关的东西导致方法失败。

我建议将所有与 View 相关的重新加载代码移动到 viewDidAppear 方法,因为它将保证加载 View 。

另一方面,我建议您在实际设置 View Controller 上移动实现 dismiss 方法(记住它应该像 [ self.navigationController dismissModalViewControllerAnimated:YES]; 一样需要关闭导航 Controller )。至少,这是我一直这样做的方式,而且从未让我失望过。逻辑是我不希望非事件 View Controller 运行任何逻辑。

最后,正如您提到的目标是 iOS 5 及更高版本,我强烈建议您将项目转移到 ARC。做起来比看起来容易,而且一旦您开始行动,那真的很棒。

您的问题的另一个可能原因是您正在使用通知调用您的 dismiss 方法,并且您的主 Controller 正在取消订阅 viewDidUnload 方法上的通知。请记住,当低内存条件触发时,将调用 viewDidUnload 方法!

关于objective-c - 内存警告是否会破坏呈现 View Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9033935/

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