How to make NSTextFieldCell Accept Keyboard copy/paste(cmd+c / cmd+v)
Asked Answered
G

1

8

I am writing an editable NSTextFieldCell in a NSTableColumn, and everything goes well.

But I found that my cell can accept the mouse right click copy/paste while does not respond to the keyboard copy/paste (cmd+c / cmd+v).

Could someone please tell me how to make my cell support the keyboard copy/paste ? Should I customize my own cell and implement some method ?

Thanks!

Ghoul answered 9/8, 2013 at 2:58 Comment(2)
i think it should "just work" did you remove the edit menu?Cubage
@GradyPlayer Yes. I do not have any menu itemGhoul
C
13

the edit menu items for copy / cut / paste etc, are what map the shortcuts to the actions.

see the similar question here: Cocoa Keyboard Shortcuts in Dialog without an Edit Menu

Cubage answered 10/8, 2013 at 14:9 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.