Not being able to edit NSTextField on NSPopover even though Editable behavior is set

前端 未结 8 1397
别跟我提以往
别跟我提以往 2020-11-27 17:19

I have an application, which open popover with NSTextField. The text field is not editable. Behavior for text field is set to Editable. I still can

8条回答
  •  萌比男神i
    2020-11-27 17:40

    If anyone is still looking for an answer to this, I am working in Swift.

    At the time where you wish the field to allow text entry, I have used myTextField.becomeFirstReponder()

    To opt out; just use myTextField.resignFirstResponder()

提交回复
热议问题