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

后端 未结 6 1681
闹比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:28

    To bring your app to the front:

    [NSApp activateIgnoringOtherApps:YES];
    

    Swift:

    NSApp.activateIgnoringOtherApps(true)
    

    Swift 3:

    NSApp.activate(ignoringOtherApps: true)
    

提交回复
热议问题