I've a list of items shown in NSTableView.I need to show a progress bar correspon开发者_JS百科ding to each item inside the table view.How can i do that?
Thanks,
LS Developer
I think the easiest way is to create a custom NSCell
and draw a NSProgressIndicator
inside.
In Interface Builder you can change the default tableview cell class name to your custom class name in order to use it.
Checkout the examples by CocoaDev:
CocoaDev - NSViewInNSTableView
精彩评论