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.
所以我有一个 UIButton 的 onclick 事件,它需要执行一些代码,但它可以随时按下,所以有可能在另一个方法仍在运行时按下它。有没有办法在特定方法完成之前阻止点击事件?
有没有办法在特定方法完成之前阻止点击事件?
除非“特定方法”在另一个线程上运行,否则这已经发生了。当其他代码在主线程上运行时,运行循环无法处理输入事件。