I’ve declared a MutableArray rqst_entries in the header of my class as property and synthesized it too.
In the viewdidload I added the following code:
self.rqst_entries = [NSMutableArray array];
Will it turn the this ivar to be autorelease and maybe release it earlier (before dealloc is called)
Thx for helping,
Stephane
If you have defined your property to either
retainorcopyit will be held by the ivar and you will be fine. If you on the other hand have defined your property to beassignedyou will run into problems since [NSMutableArray array] is autoreleased.