标签: swift xcode cocoa nstableview
我想获得NSTableView的顶部可见行(不是顶行)。 似乎没有办法解决这个问题。 这甚至可能吗?
感谢
答案 0 :(得分:9)
您可以使用以下方式执行此操作:
NSRect rect = [tableView visibleRect]; NSRange rows = [tableView rowsInRect:rect]; NSInteger firstVisibleRowIndex = rows.location;