How to bring NSWindow to front and to the current Space?

后端 未结 6 1672
闹比i
闹比i 2020-12-23 13:26

I\'m using this code to bring up my window:

[self.window makeKeyAndOrderFront:self];
[self.window setOrderedIndex:0];

But often it will be

6条回答
  •  感情败类
    2020-12-23 14:13

    Swift 2.0

    NSApp.activateIgnoringOtherApps(true)
    

    Helpful Programming Tips and Hacks

提交回复
热议问题