Re: NSTableView -setDataCell confusion

2009-06-30 Thread Andreas Mayer
Am 30.06.2009 um 01:09 Uhr schrieb Raleigh Ledet: a) Give up on the animation. Then you can use the same cell for the entire column. Each row will return the correct value that the progress indicator should draw. Be sure to invalidate the row/column as the value changes to redraw the cell

Re: NSTableView -setDataCell confusion

2009-06-30 Thread Andreas Mayer
Am 27.06.2009 um 22:18 Uhr schrieb Chase Meadors: I'm using AMIndeterminateProgressIndicatorCell (at least the drawing code) to imitate a progress indicator in the table view. To get it to use the custom cell, I've been calling [myTableColumn setDataCell:[[MyCustomClass alloc] init]]; How

Re: NSTableView -setDataCell confusion

2009-06-29 Thread Raleigh Ledet
On Jun 28, 2009, at 10:05 PM, Quincey Morris wrote: On Jun 27, 2009, at 13:18, Chase Meadors wrote: I'm using AMIndeterminateProgressIndicatorCell (at least the drawing code) to imitate a progress indicator in the table view. To get it to use the custom cell, I've been calling [myTableCo

Re: NSTableView -setDataCell confusion

2009-06-28 Thread Quincey Morris
On Jun 27, 2009, at 13:18, Chase Meadors wrote: I'm using AMIndeterminateProgressIndicatorCell (at least the drawing code) to imitate a progress indicator in the table view. To get it to use the custom cell, I've been calling [myTableColumn setDataCell:[[MyCustomClass alloc] init]]; Howeve

NSTableView -setDataCell confusion

2009-06-28 Thread Chase Meadors
I'm using AMIndeterminateProgressIndicatorCell (at least the drawing code) to imitate a progress indicator in the table view. To get it to use the custom cell, I've been calling [myTableColumn setDataCell:[[MyCustomClass alloc] init]]; However, I've run into a 'slight' problem. Apparently, A