How to change the order of opening windows in cocoa?
I had a mutil wind开发者_JS百科ows cocoa porject. and now I want to change the order of opening windows , How to do it ? Thank you very much!
You just open the windows programmatically instead of allowing it to happen automatically. So in interface builder uncheck "visible at launch" for every window. Then in your code use [myWindow makeKeyAndOrderFront:self] to show a window.
精彩评论