如何使用outlineView:isGroupItem:为NSOutlineView中的根对象提供渐变背景?

最佳答案

您可以在outlineView的委托中实现这一点。

一种方法是:

- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)item {
    if ([outlineView parentForItem:item]) {
        // If not nil; then the item has a parent.
        return NO;
    }
    return YES;
}


这是link to the docs

10-07 16:41