There is a check box titled “Continuous” under the “Control State” section in the TableView attributes dialogue box. I don’t seem to be able to find any description about it. The only thing I know about it, is it is unchecked by default and my sample tableView object doesn’t display anything unless it is checked. Can anybody more knowledgable tell me what does “Continuous” state mean here ?
Share
isContinuousandsetContinuous:are methods ofNSControl, which is a superclass ofNSTableView. In the context ofNSTableView, this property has no effect, it is just an unused aspect of the superclass. OtherNSControlsubclasses, such asNSSlideruse it to signify that their value should be updated continuously during mouse tracking.