2013-02-24 110 views
10

和标题一样,[myWindowController showWindow:nil]不起作用。这里有您需要知道的一些事实:NSWindowController showWindow:nil什么都不做

  • 我的窗口控制:KRAuthenticationWindowController
  • 界面生成文件:AuthenticationWindow.xib
  • 文件的所有者是KRAuthenticationWindowController
  • window出口连接到窗口
  • 窗口的delegate连接到文件的所有者
  • 窗口的Visible at launch未选中
  • 窗口的Release when closed也选中

我的代码如下介绍:

// KRApplicationDelegate.m 

- (void)applicationDidFinishLaunching:(NSNotification *)notification { 
    NSLog(@"%s",__PRETTY_FUNCTION__); 
    KRAuthenticationWindowController *authWindowController = [[KRAuthenticationWindowController alloc] init]; 
    [authWindowController showWindow:nil]; 
    [[authWindowController window] makeKeyAndOrderFront:nil]; 
} 

// KRAuthenticationWindowController.m 

- (id)init { 
    self = [super initWithWindowNibName:@"AuthenticationWindow"]; 
    if(!self) return nil; 
    NSLog(@"%s",__PRETTY_FUNCTION__); 
    return self; 
} 

- (void)loadWindow { 
    [super loadWindow]; 
    [self.window setBackgroundColor:[NSColor colorWithDeviceWhite:0.73 alpha:1]]; 
    NSLog(@"%s",__PRETTY_FUNCTION__); 
} 

- (void)windowDidLoad { 
    [super windowDidLoad]; 
    NSLog(@"%s",__PRETTY_FUNCTION__); 
} 

- (void)showWindow:(id)sender { 
    [super showWindow:sender]; 
    NSLog(@"%@",self.window); 
    NSLog(@"%s",__PRETTY_FUNCTION__); 
} 

我的控制台输出:

2013-02-24 16:21:45.420 Application[3105:303] -[KRApplicationDelegate applicationDidFinishLaunching:] 
2013-02-24 16:21:45.421 Application[3105:303] -[KRAuthenticationWindowController init] 
2013-02-24 16:21:45.428 Application[3105:303] -[KRAuthenticationWindowController loadWindow] 
2013-02-24 16:21:45.428 Application[3105:303] -[KRAuthenticationWindowController windowDidLoad] 
2013-02-24 16:21:45.556 Application[3105:303] <NSWindow: 0x10016e860> 
2013-02-24 16:21:45.556 Application[3105:303] -[KRAuthenticationWindowController showWindow:] 

我想我只是缺少一些重要的东西。任何帮助,将不胜感激。

+0

也许你有这个问题中描述的问题http://stackoverflow.com/questions/3539721/nswindowcontroller-loadwindow-loads-window-from-nib-but-showwindow-does-nothin – sergeyne 2013-02-24 18:30:40

+0

不,不是这样。 – akashivskyy 2013-02-24 22:08:59

回答

31

尝试将authWindowController转换为实例变量。目前,它是一个局部变量。当局部变量消失时,窗口控制器可能会被释放,窗口也会被释放,所以它永远不会被显示。

+1

这可能会发生,如果你正在使用ARC,在这个问题的更多细节http://stackoverflow.com/questions/11677043/nswindowcontrollers-window-released-immediately – sergeyne 2013-02-25 07:16:06

+2

是的,这个伎俩。非常感谢你! :) – akashivskyy 2013-02-25 14:44:34

+0

刚才碰到同样的问题,谢谢你的建议 – ribeto 2015-05-20 02:29:43