NSTableView's viewForTableColumn:row: called for more rows than expected in Mavericks

…衆ロ難τιáo~ 提交于 2019-11-28 12:42:24

I found the explanation to this in AppKit Release notes for OS X v10.9.

Here goes:

Mac OS 10.9 has a new feature called Responsive Scrolling. Responsive Scrolling allows the application to continue to rapidly scroll content even when the application’s main thread is busy doing other work. AppKit accomplishes this by having the document view draw more than what is currently visible during idle.

To facilitate Responsive Scrolling, your document view will be asked to draw portions that are not currently visible to the user.

The following method is called by NSView with a 'rect' for a recommended area that should be fully rendered for overdraw. Override this method and bring in additional subviews and pre-cached content for the 'rect' in order to perform responsive scrolling. To suppress overdraw for a particular view (such as NSTableView), override this method and call [super prepareContentInRect:[self visibleRect]].

(void)prepareContentInRect:(NSRect)rect;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!