Skip to content

Instantly share code, notes, and snippets.

@nakiwo
Created July 7, 2012 01:04
Show Gist options
  • Save nakiwo/3063673 to your computer and use it in GitHub Desktop.
Save nakiwo/3063673 to your computer and use it in GitHub Desktop.
自分でviewをunloadする
- (void)didReceiveMemoryWarning
{
if([self isViewLoaded] && self.view.window == nil) {
// viewWillUnloadでやっていた処理を書く
self.view = nil;
// viewDidUnloadでやっていた処理を書く
}
[super didReceiveMemoryWarning];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment