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.
我的滑块在 ValueChanged 中设置了一个标志,然后在 TouchUpInside 中将其重置。但是,当我触摸手柄并将其一直滑动到滑块的末尾时,TouchUpInside 事件不会被触发(因此我的标志不会被重置)。
当我将手柄滑到滑块的末端时,是否需要处理另一个 UISlider 动作?我尝试了 TouchCancel,以为当我的手指移过滑块的末端时它可能会被取消,但这不起作用。
为了解决这个问题,我需要使用 TouchUpOutside 动作/事件。