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?