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.
我有一些 UIButtons 都有 TouchUpInside 事件。其中一些也有 TouchDown 事件。在某些情况下,我希望 TouchDown 事件中的代码可以防止触发 TouchUpInside 事件。
如何使该事件系列短路?
您可以在 touch down 方法中设置一个标志,并在 touch up inside 方法中检查该标志的状态,以决定是否执行其正常操作。