I am using a cell-based NSTableView. Is there any way to create a custom NSCell
subclass and draw a NSProgressIndicator in it?
Something similar to:
-(void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView{
[myProgressControl drawOnView:controlView]; //?
}
The NSProgressIndicator
itself works as status indication only and does not interact with the user (no mouse clicks etc needed).
I'd like to stick to a cell-based NSTableView since I use NSTableViewDataSource. NSLevelIndicatorCell
is an alternative however I prefer the look/design of the NSProgressIndicator