I have dilemma about Memory releasing IBOutlet object.Do anyone please suggest what to do when we create IBOutlet object without property, need to release it?? if need to release... why we are releasing it
|
|
|
The answer is YES. The runtime connects the objects to I highly recommend you to read the article because many iOS framework accesses properties by Key-Value compliance ( |
||||
|
|
|
|
|||
|
|
Why not just have a private IBOutlet property, to make things clearer and more explicit. I always do this personally:
|
|||||||
|
|
You are not the owner of that object. so no need to release IBOutlet object.If you are using @property (nonatomic, retain) on IBoutlet object then you must release that object in dealloc. Take a look at Advanced Memory Management Programming Guide |
||||
|
|
|
Answer is YES... i was confused about that too, but try this: open a xib file onen assistant editor window and get the .h file code near your XIB IB file chose an object in IB file (an object with no reference to any var) ctrl click on it and chose: "new reference outlet" button drag the line to your .h code file in the @interface{ } section give a name to your new var ("aaa") (note that no property "aaa" is created) now Xcode has done all the magic for you, and... in .m file you can find, in dealloc method:
so... if apple release it, it seems that the default IBOutlet vars loaded via XIB file are retained... EDIT: here's the point in apple doc: |
|||||||
|
|
You are not the owner of the object, therefore you do not release it. You become the owner by retaining, copying or creating (init/alloc) an object. Only then you are you (one of the) owner(s) of the object, and need to release it when you are done with the object. Fore more info check Cocoa core competencies - Memory Management I hope this explains why you do not have to release the object. |
|||||||
|
|
Even though you didn't set it as property, the property is refer to setter and getter methods. When you use an object you should always remember to release it. The property is unrelated with memory issue. |
|||
|
|



