有没有办法在 swift 中跟踪 mouseDown 和 mouseUp 事件之间的时间?还是必须手动实现自己的跟踪器?
你可以检查NSEvent.timestamp
,这是一个TimeInterval
(Double
的类型别名,存储秒数(:
let duration = mouseUpEvent.timestamp - mouseDownEvent.timestamp