On Wed, Mar 11, 2009 at 9:33 AM, Scott Ribe <scott_r...@killerbytes.com> wrote: > Does your setImage method retain the image? > The object ExternalView is a NSImageView so the setImage is the one of NSImageView. The doc says nothing about it, but i added some debug log like this :
NSLog(@"BEFORE : %d", [NewDisplayImage retainCount]); [CameraView setImage:NewDisplayImage]; NSLog(@"AFTER : %d", [NewDisplayImage retainCount]); 2009-03-13 17:17:35.105 xxx[2281:e503] BEFORE : 1 2009-03-13 17:17:35.106 xxx[2281:e503] AFTER : 3 So i guess the image have been retained 2 times .... -- I. _______________________________________________ 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 arch...@mail-archive.com