I want to clear the selection of NSTextView
after it loses focus. How can I achieve that? Thanks in advance!
Kai.
I want to clear the selection of NSTextView
after it loses focus. How can I achieve that? Thanks in advance!
Kai.
Copyright © 2021 Jogjafile Inc.
Set up a delegate object (or use your app delegate) that conforms to
NSTextDelegate
protocol. Then all you need to do is to implementtextDidEndEditing:
to clear the selection. From the docs:Something like: