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

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

    Perhaps you want:

      [self.window setCollectionBehavior: NSWindowCollectionBehaviorCanJoinAllSpaces];
    

    Experiment with the other collection behaviors... I found NSWindowCollectionBehaviorMoveToActiveSpace was a bit buggy in 10.5 but it might be better now.

提交回复
热议问题