Possible Duplicate:
When should I release [[UIApplication sharedApplication] delegate] object?

I'm creating instances of UIApplication many times in my app to access shared infos, like this:

MyAppDelegate *appDelegate =  (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
appDelegate.ListingNav.navigationBarHidden = FALSE;

Well, how should it release all these appDelegate objects? Won't they create accumulated memory leaks ?

Thx for helping,

Stephane

link|improve this question

You are not creating anything. You create an object by invoking a method whose name begins with "alloc", "new", "copy", or "mutableCopy". – albertamg Sep 10 '11 at 19:36
feedback

closed as exact duplicate by Lasse V. Karlsen Sep 10 '11 at 20:09

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

In general, if you do not call alloc or retain, then you do not need to call release. You do not need to release appDelegate in this use case.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.