Re: alloc/init nested deep in long statement. okay or not?
Re: alloc/init nested deep in long statement. okay or not?
- Subject: Re: alloc/init nested deep in long statement. okay or not?
- From: Eric Peyton <email@hidden>
- Date: Wed, 24 Jul 2002 15:38:29 -0500
Yipes - you will leak lots of memory.
Doing an alloc] init] like this gives you an object that is not
autoreleased and you have no pointer to release it yourself.
Not good.
Better to create the image as a variable and then either autorelease or
explicitly release that variable after you are done with it.
Eric
On Wednesday, July 24, 2002, at 03:11 PM, Philip George wrote:
>
>
This seems strange, so I figured I should ask. It will be repeated
>
every 5 seconds in a timer loop...
>
>
>
[myImageView setImage: [[NSImage alloc] initWithData:[offScreenView
>
drawWithPDFInsideRect:[offScreenView rect]]]];
>
>
>
Is this okay to do or is there a "better" way to do this?
>
>
Thanks.
>
>
- Philip
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.