If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I'm a little confused about which objects I need to dealloc in the dealloc method of one of my classes. Do I have to dealloc all of the NSStrings and NSDictionaries explicitly declared in my header file?
See this article. In short, you should call -release or -autorelease on every object you create via +alloc, +new, or -copy or on which you've called -retain. Top-level objects in nibs you've loaded are also your responsibility.