当表视图大小发生变化时,具有动态高度的行的基于视图的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 有点相关,其中行具有动态高度,但更侧重于响应表格视图的大小变化。