NSProgressIndicator into a NSTableView cell?
NSProgressIndicator into a NSTableView cell?
- Subject: NSProgressIndicator into a NSTableView cell?
- From: Lorenzo Puleo <email@hidden>
- Date: Sat, 14 Dec 2002 23:22:34 +0100
Hi,
how could I put a small "Spinning Style" NSProgressIndicator
into a cell of a NSTableView?
I already know how put an "image & text" into a cell: I subclass the class
NSTextFieldCell with my class IconCell, then,
NSTableColumn *tableColumn = nil;
IconCell *iconCell = nil;
iconCell = [[[IconCell alloc] init] autorelease];
[iconCell setEditable: NO];
tableColumn = [theList tableColumnWithIdentifier: @"theIcon"];
[tableColumn setDataCell:iconCell];
How to put a NSProgressIndicator now?
Any help will be really appreciated. Thank you.
--
Lorenzo Puleo
mailto:email@hidden
_______________________________________________
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.