I'm using the following code many times in my app (especially to manage a NavigationController):
MyAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
When should I release it ?
Thx for helping,
Stephane
|
I'm using the following code many times in my app (especially to manage a NavigationController):
When should I release it ? Thx for helping, Stephane
| |||||
feedback
|
|
Don't. Never release your application delegate - it is managed automatically by the OS. If you look in your app's main.m file, you'll see some code that initializes an instance of EDIT as @Goz points out, you should | |||||||||||||||||
feedback
|
|
Short answer: never ever release your application delegate. Explanation:
As you can see, it is assigned property meaning all mem-mgmt done here is just assigning pointers for an instance variable. It means calling EDIT: However, as Goz suggests, you can call | ||||
|
feedback
|