iOS 如何知道当前正在运行的线程并停止它
我的一个 IBActions 当前正在运行,当我选择另一个操作时,我想停止之前的 IBActions。
我不知道如何做到这一点。
你们中的任何人都可以帮我解决这个问题吗?
提前致谢...
One of my IBActions are currently running, when I choose another action I want to stop my previous IBActions.
I don't have any idea about how to do this.
Can any one of you please help me on this.
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用布尔值,类似于信号量。运行 IBA-2 时,将其设置为 true。 IBA-1 必须在循环、循环或定时器过程中检查它,如果为 true,则将其设置为 false 并返回。
You may use boolean, something like a semaphore. When run IBA-2, set it to true. IBA-1 must check it in cycle, loop or timer proc, and if it's true, set it to false and return.
如果您不显式创建另一个队列或线程,IBActions(如果您将它们用作基于 XIB 的视图的事件处理程序)将在主线程中执行。你不能停止主线程,否则你将停止整个应用程序。
IBActions (if you use them as event handlers for XIB based views) are performed in main thread, if you don't create another queue or thread explicitly. You can't stop main thread, otherwise you will stop whole app.