Transparent NSCollectionView Background

前端 未结 3 504
滥情空心
滥情空心 2021-01-04 23:53

I\'m again struggling with setting NSViews background colors to transparent. I have a NSCollectionView as part of NSClipView which is part of a

3条回答
  •  春和景丽
    2021-01-05 00:54

    I struggled a bit attempting to get my NSCollectionView background "transparent" @JFS solution pointed me in the right direction: and I finally achieved it by setting both the parent scrollView and the collectionView backgrounds:

    cvScrollView.backgroundColor = NSColor.clear
    collectionView.backgroundColors = [NSColor.clear]
    

提交回复
热议问题