gpt4 book ai didi

xcode - mouseMoved 未调用

转载 作者:行者123 更新时间:2023-12-03 16:02:16 25 4
gpt4 key购买 nike

我有一个子类NSView这是子类 NSDocument 的 .xib 文件的一部分,它通过 NSDocumentController 的默认行为变得活跃。的openDocument:方法。在此子类中 NSView我已经实现了方法awakeFromNib ,其中 View 的 NSWindow setAcceptsMouseMovedEvents:YES方法被调用,并且 acceptsFirstMouse: ,返回 YES 。但我的mouseMoved:我的子类的方法实现 NSView当我将鼠标移到它上面时不会被调用。可能是什么问题?

最佳答案

请务必请求发送 mouseMoved 事件:

NSTrackingAreaOptions options = (NSTrackingActiveAlways | NSTrackingInVisibleRect |  
NSTrackingMouseEnteredAndExited | NSTrackingMouseMoved);

NSTrackingArea *area = [[NSTrackingArea alloc] initWithRect:[self bounds]
options:options
owner:self
userInfo:nil];

关于xcode - mouseMoved 未调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7543684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com