I need to create an NSCell that shows an image view. I'm not working with NSImageCell because It contains an NSImage and I need an NSImageView so I can animate the image.

Right now, I'm trying to subclass NSCell with a imageView property but I can't make it work the proper way.

I have override the drawInteriorWithFrame method and add the imageView to the controlView. The problem is that the controlView never releases any of its subviews. Just so you know, the imageView property has not been retained.

- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
    if ([self.imageView image]) {
        if ([self.imageView superview])
            [self.imageView removeFromSuperview];
        [controlView addSubview:self.imageView];
        [self.imageView setFrame:cellFrame];
    }
}

Any ideas?

link|improve this question

71% accept rate
1  
Could you be more specific as to why it doesn’t ‘work the proper way,’ and maybe post the code you’re using? – Bavarious Jun 10 '11 at 21:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.