I have an NSScroller that is used to scroll some complete custom view of mine. With [scroller setScrollerStyle:[NSScroller preferredScrollerStyle]]
I get the correct style of the scroller. Now when the scroller has NSScrollerStyleOverlay
, I assumed it will automatically hide when it is not used. Like it does when using a standard NSScrollView. But it doesn't. It's always visible.
Is there a suggested way to hide the scrollers automatically? Or do I have to do that manual with timers etc?
I ended up redesigning my view's so they fit in a UIScrollView. So I worked around this problem.