简体   繁体   中英

WebView as responder

I would like to receive the changeFont: and changeColor: messages in a WebView subclass.

According to the documentation, these methods are sent by NSFontManager and NSColorPanel respectively to responders.

Yet, they never get called in my WebView subclass. Is this the expected behavior? If not, what am I doing wrong?

Apparently because the WebView had editable content the events were being consumed by a child responder.

The workaround was to listen to WebViewDidChangeNotification when this happens.

Here is what I think is occurring

NSFontManager apparently sends the messages along the responder chain and not to the delegate.

I would set my CustomWebViewController to be the delegate of the window.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM