I am using this line in my code
NSMutableArray * NewsFeedArray; NewsFeedArray =[[[NSMutableArray alloc]init]retain];
Where could i release object of NSMutableArray ? and Why we want to release that object... In my project i release the object in dealloc method ..But its take some more time the release the object....
Can anyone help me? What exactly doing this?
Thanks in advance...