Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a situation where I build a view with a table and another view for table header (containing images and labels and buttons). Now I connected the table, image, labels, buttons to variables in my Controller class. Should I release the memory in -dealloc method for all those variables that I connected using Interface Builder? I believe memory is automatically allocated for these variables?

share|improve this question

1 Answer

up vote 4 down vote accepted

The answer is best provided by Apple's Memory Management of Nib Objects document. If your code "owns" the NIB (i.e. you called +[NSBundle loadNibNamed: foo owner: bar]) then your code needs to destroy the NIB resources.

share|improve this answer
Key sentence: "Objects in the nib file are created with a retain count of 1 and then autoreleased." – Jason Moore Jul 28 '10 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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