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.
当用户将手指按住 + 或 - 时,是否有任何方法可以更改值更新的速度?我做了一些研究,但找不到任何东西!任何帮助表示赞赏!谢谢 !
第一个想法 - 您可以将 UITapRecognizer 和 UILongTapGesterRecognizer 分配给同一个视图。让敲击识别器的选择器增加一,长敲击识别器的选择器增加一个更大的数字。
第二个想法 - 您可以捕获 touchesBegan: 并启动一个计时器,然后开始递增设置为 1 的 iVar。每次计时器滴答声都会增加用于递增的 iVar。