I have an iPad app which has a main view controller, and then a settings view controller. When my main view presents the settings view, I present the settings view in full screen. There is a dismiss button in the settings view, which works - until a memory warning occurs. If a memory warning occurs while the settings button is onscreen, it will refuse to dismiss.
In other words, this works:
- App Launch -> Show Main View -> Show Settings View -> Dismiss Settings View
This doesn't:
- App Launch -> Show Main View -> Show Settings View ->Memory Warning -> Dismiss Settings View
The settings view will just stay there.
I'm running this app on iOS 5 on a first generation iPad. (I'm not supporting iOS 4.)
How can I fix this?
Edit:
Here's my code for showing the settings 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:^{
}];
}
And here's how I hide it:
//This method reloads some stuff and
- (void) dismissSettings{
//
// ... Reload some other stuff...
//
//Dismiss the settings panel
[self dismissViewControllerAnimated:YES completion:^{
//
// ... Reload some other stuff...
//
}];
}