标签: swift macos appkit nsevent
有没有办法在swift中跟踪mouseDown和mouseUp事件之间的时间?或者是否必须手动实施自己的跟踪器?
答案 0 :(得分:0)
您可以查看NSEvent.timestamp,TimeInterval(Double的类型,存储秒数):
NSEvent.timestamp
TimeInterval
Double
let duration = mouseUpEvent.timestamp - mouseDownEvent.timestamp