为什么这个NSPanel发布了“关闭”按钮?

时间:2012-11-03 03:01:14

标签: objective-c xcode cocoa

我的IB中的NSPanel“未关闭时释放”。

“在发布时可见”也未经检查。

我使用以下内容淡化NSPanel(由dragToButton激活)并且工作正常

- (IBAction)dragToFile:(id)sender

{        

    DragImageView *accessory = [[[DragImageView alloc] initWithFrame:NSMakeRect(0,0,71,63)] autorelease];
    [accessory setMainContentFolder:self.mainInstallFolder];

    [self.dragToFile setFloatingPanel:YES];
    [self.dragToFile makeKeyWindow];

    [dragImage setMainContentFolder:self.mainInstallFolder];
    NSRect frame = dragToFile.frame;
    NSRect mainFrame = self.window.frame;
    frame.origin.x = mainFrame.origin.x + 550;
    frame.origin.y = mainFrame.origin.y + 360;
    [dragToFile setFrame:frame display:NO];

    //set fade anim params
    NSDictionary *fadeInDict = [NSDictionary dictionaryWithObjectsAndKeys:
                                 dragToFile, NSViewAnimationTargetKey,
                                 NSViewAnimationFadeInEffect, NSViewAnimationEffectKey,
                                 nil];
    //create fade instance
    NSViewAnimation *fadeIn = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray arrayWithObjects: fadeInDict, nil]];

    [fadeIn startAnimation];
    [fadeIn release];

但如果我关闭窗口工具栏上的窗口,它会从windowWillClose通知中触发以下内容

- (void) dragToFileWindowDidClose:(id)sender
{
    [dragToFile setAlphaValue:0.0]; //make nspanel 0 alpha so it can fade in again
    [dragtoButton setState:NSOffState];

}

窗口关闭但完全消失,并且在下一次dragToButton点击时不会返回。

NSPanel具有以下属性

@property (retain) IBOutlet NSPanel *dragToFile;

所以我很确定窗口会被释放,但我不知道为什么,因为我取消选择该选项。

2 个答案:

答案 0 :(得分:0)

首先尝试手动使用[dragToFile setReleasedWhenClosed:NO];

答案 1 :(得分:0)

感谢您的建议。我解决了

而不是[self.dragToFile makeKeyWindow];

[self.dragToFile makeKeyAndOrderFront:dragToFile];

不确定为什么这样做而另一个没有,但现在它完美无瑕。

感谢。