Custom field editor for NSTextFieldCell in an NSTableView

前端 未结 5 1475
情歌与酒
情歌与酒 2021-02-06 16:39

I have a custom NSTableView subclass filled with several custom NSTextFieldCell subclasses. I would like to be able to change the edited cell by using

5条回答
  •  孤城傲影
    2021-02-06 17:26

    The answer to the more general title of this question can be found in this answer: https://stackoverflow.com/a/8865953/43615

    Basically, one subclasses NSTextFieldCell and overrides fieldEditorForView:, where one simply creates a custom subclass of NSTextView and sets its fieldEditor property to YES.

提交回复
热议问题