The [super viewDidUnload] template is created, but the code samples show:
[super viewDidUnload]
[super dealloc]
Is there any difference?
You must call the superclass implementation -viewDidUnload
-viewDidUnload
Never call [super dealloc] directly, except for your own -dealloc method
-dealloc
- (void) viewDidUnload { ... [super viewDidUnload]; }
and
- (void) dealloc { //clean up here [super dealloc]; }
Source: https://habr.com/ru/post/1335704/More articles:rails how to make a conditional class - ruby-on-railsHelp needed for solution between Telerik RadControls and DevExpress DXperience (WPF) - telerikCreating an Expando Object in Ruby - ruby โโ| fooobar.comWhich commercial WPF package is better? Please suggest - telerikPerl looks in the current directory (.) For modules? - moduleWhen to Use IEqualityComparer in a .NET 4.0 Targeted Application - .netHow to stop children of the panel exceeding the boundaries if the MaxWidth panel is installed? - layoutfacebook graph api friends_religion_politics resolution problems - apiApplication settings for visual studio - visual-studioAsp.net MVC 3 Razor code problem in if statement - asp.net-mvc-3All Articles