I use initWithNibName to load detail views. I was just thinking do these things need to be released at all? init is basically adding a retain count of 1?
|
@Mel: Yes you need to release them. A Part from Apple's Doumentation: You own any object you create You create an object using a method whose name begins with “alloc”, “new”, “copy”, or “mutableCopy” (for example, alloc, newObject, or mutableCopy). But as such it has nothing to do with
And the retain count of 1 that you are talking about is because of the Hope this helps you. |
||||
|
|
Yes. Read this section. Anything starting with |
|||||||||
|
|
The section in question:
Generally, though, you should avoid thinking in terms of retain counts and focus on ownership. If you own it, it's up to you to release it. |
|||
|
|