我知道UIScrollView
有scrollIndicatorInsets
,所以如果我有UICollectionView
我可以做类似的事情
collectionView.scrollIndicatorInsets = UIEdgeInsetsMake(0,0,0,0);
但是如何设置NSCollectionView
上的滚动指示符插图,因为NSScrollView
似乎没有scrollIndicatorInsets
属性?
答案 0 :(得分:1)
集合视图包含在剪辑视图中,剪辑视图本身包含在Scroll View中,其中包含以下内容:
collectionView.enclosingScrollView?.scrollerInsets
宣布:
/* The distance the scrollers are inset from the edge of the scroll view. */
@available(OSX 10.10, *)
public var scrollerInsets: NSEdgeInsets
如果您需要进一步的自定义,您也可以访问滚动对象:
collectionView.enclosingScrollView?.verticalScroller