1

我有 TabViewController,并且我有为它制作自定义 NSView TabView,我在 XIB 中继承了它。

现在我已经成功地在 TabView 中实现了所有鼠标句柄事件并工作了。

我想要 TabViewController 中的相同事件,但我不能。

我尝试过论坛、博客和苹果文档中建议的方法。但我无法得到它。

TabViewController.xib 's custom view of TabView.

在此处输入图像描述

带有鼠标句柄代码的 TabView。

- (BOOL)acceptsFirstResponder {
    return YES;  
}

-(void)mouseDragged:(NSEvent *)theEvent
{
}

-(void)mouseDown:(NSEvent *)theEvent
{
}

-(void)mouseEntered:(NSEvent *)theEvent
{
}

-(void)mouseExited:(NSEvent *)theEvent
{
}

-(void)mouseMoved:(NSEvent *)theEvent
{
}

-(void)mouseUp:(NSEvent *)theEvent
{
}

-(void)keyDown:(NSEvent*)theEvent
{
}

每个鼠标方法都被调用。我想要这个在TabViewController.

如果有人做过同样的程序,请建议我。

4

0 回答 0