Re: Custom tableView cell by subclassing NSCell

2009-05-06 Thread Corbin Dunn
On May 6, 2009, at 3:50 PM, Malayil George wrote: Thanks Joar. Turns out you were right...it wasn't really because of the retain/copy semantics in my property declaration. Changing the variable name to myImage and the setter/getters accordingly has taken care of the issue and it works fi

Re: Custom tableView cell by subclassing NSCell

2009-05-06 Thread Malayil George
Thanks Joar. Turns out you were right...it wasn't really because of the retain/copy semantics in my property declaration. Changing the variable name to myImage and the setter/getters accordingly has taken care of the issue and it works fine. George On Tue, May 5, 2009 at 9:23 PM, Joar Wingfors w

Re: Custom tableView cell by subclassing NSCell

2009-05-05 Thread Joar Wingfors
On 5 maj 2009, at 17.41, Malayil George wrote: The modification that I have made is that in my subclass of NSCell A couple of points: * NSCell already have an image property. Why are you adding an additional image property? If you're adding an additional image property, you should give

Re: Custom tableView cell by subclassing NSCell

2009-05-05 Thread Malayil George
Interestingly changing the property type from copy as I had it to retain @property (retain) NSImage *image; seems to have fixed the problem Not entirely sure why tho. I would imagine that with copy, my cell would be getting a copy of the image with a retain count of 1. When dealloced it goes to

Re: Custom tableView cell by subclassing NSCell

2009-05-05 Thread Malayil George
just found http://developer.apple.com/samplecode/ImageBackground/listing3.html after posting this...going through it to see if I can figure it out :-) On Tue, May 5, 2009 at 8:41 PM, Malayil George wrote: > Hi, I'm trying to expand on "Styling an NSTableView" at katidev.com in a > test app of