gpt4 book ai didi

xcode - NSTableView 拖放选定的行会覆盖蓝色的行布局

转载 作者:行者123 更新时间:2023-12-03 16:08:04 25 4
gpt4 key购买 nike

我有一个 NSTableView,它在每一行中显示一些图像和文本。我为 NSTableView 启用了多重选择。我为 TableView 启用了拖放功能来排序或导出图像。现在,当我选择多行并将它们拖动到 TableView 上时,整行会变成蓝色并保持蓝色(选定)。文字和图像都看不到。在 XCode 中我收到以下消息:

Layout still needs update after calling -[NSTableRowView layout]. NSTableRowView or one of its superclasses may have overridden -layout without calling super. Or, something may have dirtied layout in the middle of updating it. Both are programming errors in Cocoa Autolayout. The former is pretty likely to arise if some pre-Cocoa Autolayout class had a method called layout, but it should be fixed.

该问题仅存在于多重选择中。当启用单一选择时,它工作正常。

这里用三张图片来演示这个问题:

图2:拖动时变成全蓝色;覆盖其他布局组件

http://ekiwi.de/temp/stackoverflow/original2.png

图3:拖动后仍为全蓝色

http://ekiwi.de/temp/stackoverflow/original3.png

到目前为止,我通过谷歌搜索两天没有找到任何解决方案或提示。也许这里有人有提示?

最佳答案

我终于能够通过设置行 View 的 selectionHighlightStyle 来覆盖蓝色选择颜色。我的 NSTableRowView 子类中的以下代码实现了这一点:

- (NSTableViewSelectionHighlightStyle)selectionHighlightStyle
{
return NSTableViewSelectionHighlightStyleNone;
}

- (void)drawSelectionInRect:(NSRect)dirtyRect
{
[[NSColor redColor] set];
NSRectFill(dirtyRect);
}

关于xcode - NSTableView 拖放选定的行会覆盖蓝色的行布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26815659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com