-(IBAction) Generate:(id) sender
{
        for (i = 0; i < count; i++)
        {
            NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];

NSImage* tempSource = [[NSImage alloc] initWithContentsOfFile:sPath[i]];
                // some code
            [tempSource release];
        
            [pool release];
        }
}



hth, G.


On 30 Apr 2008, at 10:09 pm, Yannick De Koninck wrote:
I deleted everything that was between NSImage* tempSource = [[NSImage alloc] initWithContentsOfFile:sPath[i]; and [tempSource release]; so basically this is the code (sPath is a NSString array containing path names):
-(IBAction)Generate:(id)sender
{


for (i = 0; i < count; i++)
                {
NSImage* tempSource = [[NSImage alloc] initWithContentsOfFile:sPath[i]];
        [tempSource release];
}

}

And still the same problem occurs. So the problem is that the memory is not immediately released. You think this can be solved by using an autoreleasepool? I'm pretty new to cocoa programming and i never used autoreleasepools before.
Thank you very much, Yannick

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to