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

眉间皱痕 提交于 2019-11-27 07:14:58

问题


My understanding was that viewForTableColumn:row: would be called only for rows that are visible.

I confirmed this using the following: NSRange rowsInRect = [aTableView rowsInRect:[aTableView visibleRect]]; NSInteger lastVisibleRow = rowsInRect.location + rowsInRect.length;

But with Mavericks, viewForTableColumn:row is getting called many more times without scrolling down.

For example, if my last visible row was 35, data source method is called for 139 rows.

Can anybody explain this?


回答1:


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;



来源:https://stackoverflow.com/questions/23013990/nstableviews-viewfortablecolumnrow-called-for-more-rows-than-expected-in-mave

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