Re: [Q] Trouble setting an image in an NSOutlineView
Re: [Q] Trouble setting an image in an NSOutlineView
- Subject: Re: [Q] Trouble setting an image in an NSOutlineView
- From: Ryan Stevens <email@hidden>
- Date: Sun, 25 Aug 2002 08:44:15 -0700
See below. I can't believe I missed this...
On Saturday, August 24, 2002, at 08:54 PM, Mark de Jong wrote:
Thanks, Ryan.
I read about that in the archives. The problem is, the rect is still
too large and it overlaps the next column in the NSOutlineView. I guess
I could fix that.
It just seems like NSImageCell should do exactly what I want it to do
and I'm puzzled why it doesn't work.
Anyway, thanks for your suggestion. I appreciate you taking the time to
answer my query.
-- Mark
On Saturday, August 24, 2002, at 08:38 PM, Ryan Stevens wrote:
On Saturday, August 24, 2002, at 08:18 PM, Mark de Jong wrote:
Hi!
I cannot seem to get an NSImageCell to appear in an NSOutlineView.
I set things up with:
aTableColumn = [table tableColumnWithIdentifier:@"icon"];
You're changing the cell type for the column identified as "icon".
Then...
imageCell = [[NSImageCell alloc] initImageCell:nil];
[aTableColumn setDataCell: imageCell];
[imageCell release];
Then, I add this delegate:
- (void)outlineView:(NSOutlineView *)outlineView
willDisplayCell:(id)cell
forTableColumn:(NSTableColumn *)tableColumn
item:(id)item
{
NSString *identifier = [tableColumn identifier];
if( [identifier isEqual:@"activated"] ) {
Why look for "activated"?
Shouldn't this be:
if ([identifier isEqualToString:@"icon"]) { /* ... */ }
?
NSLog( @"about to set the image" );
[cell setImage:fontIsDamagedImage];
}
}
However, no icon appears.
If, however, I change the second line to:
imageCell = [[NSBrowserCell alloc] initImageCell:nil];
Then my icon appears, with the "disclosure triangle" next to it, which
is not what I'm looking for. I've look through the archives but cannot
seem to find a solution. What's even worse is that I had this working
at one point. I just cannot make it work again. :-)
Does anyone here know how I can make my icon appear using NSImageCell?
Not sure about the image cell but for the browser cell just
setLeaf:YES (removing the triangle) on it and go...?
_______________________________________________
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.