I would like to prevent a subclass of NSScrollView from flashing its scroller.
I tried to override -[NSScrollView flashScrollers]
with empty implementation, but it does not work.
Any suggestion?
I would like to prevent a subclass of NSScrollView from flashing its scroller.
I tried to override -[NSScrollView flashScrollers]
with empty implementation, but it does not work.
Any suggestion?
Copyright © 2021 Jogjafile Inc.
If you hide the NSScrollView before setting the scroll position and show it again, it will prevent the scrollbars from flashing.
Here's a code sample: