5

我想以NSWindow编程方式向一个关闭按钮添加一个关闭按钮。我可以让按钮显示,但没有鼠标悬停或鼠标按下效果。当我单击按钮时,我的“选择器”似乎永远不会被调用。我不太确定出了什么问题,为什么这很烦人。

这是我一直在搞砸的:

closeButton = [NSWindow standardWindowButton:NSWindowCloseButton forStyleMask:self.styleMask];

NSView *themeFrame = [[self contentView] superview];
NSRect c = [themeFrame frame];  // c for "container"
NSRect aV = [closeButton frame];    // aV for "accessory view"
NSRect newFrame = NSMakeRect(                                                c.size.width - aV.size.width - 5,  // x position                                                c.size.height - aV.size.height - 5,    // y position                                           aV.size.width,  // width                                                aV.size.height); // height

[closeButton setFrame:newFrame];    
[themeFrame addSubview:closeButton];
[closeButton setAutoresizingMask:NSViewMaxXMargin | NSViewMinYMargin];  
[closeButton setEnabled:YES];
[closeButton setTarget:self];
[closeButton setAction:NSSelectorFromString(@"testClick:") ];

其中“testClick”只是我班级的一个成员函数,定义如下:

- (void)testClick:(id)sender

问题似乎是调用:
[themeFrame addSubview:closeButton];

themeFrame 所在的位置:[[self contentView] superview]只需将按钮添加到[self contentView]作品中,但我希望将其添加到标题栏中。

请不要界面生成器...

4

1 回答 1

0

潜在问题 #1)

你打电话给“ NSSelectorFromString”的方式对我来说似乎不正确。我认为您不能在 Objective C 中通过这种方式传递参数。

尝试这个:

[closeButton setAction: @selector(closeWindow:)];

并创建一个新的 " closeWindow:" 动作,如下所示:

- (void) closeWindow: (id) sender;

关闭窗口。

潜在问题 #2)

代替:

closeButton = [NSWindow standardWindowButton:NSWindowCloseButton forStyleMask:self.styleMask];
NSView *themeFrame = [[self contentView] superview];

为什么不使用:

NSWindow * parentWindow = [[self contentView] window];
if(parentWindow)
{
   closeButton = [parentWindow standardWindowButton:NSWindowCloseButton forStyleMask:self.styleMask];
}
于 2012-06-25T03:59:38.513 回答