gpt4 book ai didi

iphone - iPhone 上触发触摸事件的频率如何?

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

向最顶层应用程序提供触摸事件的频率如何?

例如,触摸、在屏幕上拖动手指(持续 1 秒),然后松开<-我可以获得多少个离散样本?

编辑:最大是多少?不同代的 iPhone 和不同的操作系统版本会有不同吗?

最佳答案

您可以通过重写以下 UIResponder 方法自行分析:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;

在触摸开始时保存日期戳,在触摸移动时增加静态计数器,在触摸结束时保存另一个时间戳,然后进行一些简单的除法:速率 =(触摸次数)/(时间间隔)

关于iphone - iPhone 上触发触摸事件的频率如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3731863/

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