在Swift中是否有办法告诉NSScrollView何时开始滚动。
答案 0 :(得分:0)
您可以使用侦听NSScrollViewWillStartLiveScrollNotification
[1]
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClass.YourFunctionName), name: NSScrollViewWillStartLiveScrollNotification, object: nil)
只需将您的功能放在#Selector()