focus a NSTextField

后端 未结 5 2104
深忆病人
深忆病人 2020-12-08 08:55

I have a NSTextField and I want to set its content if I klick on a button and than set the cursor on this textfield at the end of the text so if someone klicks the button he

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-08 09:15

    I am writing an ingame plugini, I were having a similar problem:

    - (void)gotEvent:(NSEvent *)newEvent
    {
      [mainWindow makeKeyAndOrderFront:self];
      [mainWindow makeFirstResponder:messageField];
      [mainWindow sendEvent:newEvent]; // will forward the typing event
    }
    

    this does the job :)

提交回复
热议问题