9

当表视图大小发生变化时,具有动态高度的行的基于视图的NSTableView行不会调整其行大小。当行高来自表格视图的宽度时,这是一个问题(想想填充一列并换行从而扩展行大小的文本块)。

每当它改变大小时,我一直试图NSTableView调整其行的大小,但收效甚微:

  • 如果我通过查询仅调整可见行的大小enumerateAvailableRowViewsUsingBlock:,则某些不可见行不会调整大小,因此在用户滚动并显示这些行时以旧高度显示。
  • 如果我调整所有行的大小,当有很多行时(在我的 1.8Ghz i7 MacBook Air 中每个窗口调整 1000 行后大约延迟 1 秒),它会变得明显变慢。

有人可以帮忙吗?

这是我检测到表视图大小变化的地方 - 在表视图的委托中:

- (void)tableViewColumnDidResize:(NSNotification *)aNotification
{
    NSTableView* aTableView = aNotification.object;
    if (aTableView == self.messagesView) {
        // coalesce all column resize notifications into one -- calls messagesViewDidResize: below

        NSNotification* repostNotification = [NSNotification notificationWithName:BSMessageViewDidResizeNotification object:self];
        [[NSNotificationQueue defaultQueue] enqueueNotification:repostNotification postingStyle:NSPostWhenIdle];
    }
}

而以下是上面发布的通知的处理程序,其中可见行的大小被调整:

-(void)messagesViewDidResize:(NSNotification *)notification
{
    NSTableView* messagesView = self.messagesView;

    NSMutableIndexSet* visibleIndexes = [NSMutableIndexSet new];
    [messagesView enumerateAvailableRowViewsUsingBlock:^(NSTableRowView *rowView, NSInteger row) {
        if (row >= 0) {
            [visibleIndexes addIndex:row];
        }
    }];
    [messagesView noteHeightOfRowsWithIndexesChanged:visibleIndexes];   
}

调整所有行大小的替代实现如下所示:

-(void)messagesViewDidResize:(NSNotification *)notification
{
    NSTableView* messagesView = self.messagesView;      
    NSIndexSet indexes = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0,messagesView.numberOfRows)];      
    [messagesView noteHeightOfRowsWithIndexesChanged:indexes];  
}

注意:这个问题与基于视图的 NSTableView 有点相关,其中行具有动态高度,但更侧重于响应表格视图的大小变化。

4

1 回答 1

12

我刚刚经历了这个确切的问题。我所做的是监视滚动视图的内容视图的 NSViewBoundsDidChangeNotification

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(scrollViewContentBoundsDidChange:) name:NSViewBoundsDidChangeNotification object:self.scrollView.contentView];

并在处理程序中,获取可见行并调用 noteHeightOfRowsWithIndexesChange:。我在执行此操作时禁用动画,因此用户在调整大小期间不会看到行在视图进入表格时摆动

- (void)scrollViewContentBoundsDidChange:(NSNotification*)notification
{
    NSRange visibleRows = [self.tableView rowsInRect:self.scrollView.contentView.bounds];
    [NSAnimationContext beginGrouping];
    [[NSAnimationContext currentContext] setDuration:0];
    [self.tableView noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:visibleRows]];
    [NSAnimationContext endGrouping];
}

这必须快速执行,以便表格很好地滚动,但它对我来说工作得很好。

于 2012-09-05T19:49:21.700 回答