Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个创建窗口的库。我在添加到窗口的视图中拦截鼠标事件。它在 10.6 和 10.7 上运行良好。
但是在 10.5 上,“mouseDragged”回调永远不会被调用。有人对如何解决它有任何想法吗?
问候,
维什韦什
有一个设置器NSWindow允许它听到 mouseMoved 事件
NSWindow
-(void)setAcceptsMouseMovedEvents:(BOOL)val;
至于为什么它不能在 10.5 中工作,我不知道,但作为猜测,它们在跟踪方面相当昂贵,因此在该版本中默认情况下可能会关闭。