Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让它发挥作用?我在继承自 WebView 的类中添加了覆盖方法,但它没有被触发。
任何想法?提前致谢!
- (void)scrollWheel:(NSEvent *)theEvent
WebView 不是捕捉事件的那个;据我所知,获取事件的是框架视图的文档视图,而且它通常是 class WebHTMLView,很难子类化。
WebHTMLView
[[[webView mainFrame] frameView] documentView]
对不起,但我不知道在这种情况下如何捕捉滚动事件,也许是方法调配或类似的东西。(尽管您可以使用类似的东西-enclosingScrollView并设置自定义滚动条或该类型的东西)
-enclosingScrollView