作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须在主线程上执行类似 NSProgressIndicator.stopAnimation
的操作。但是我想在分配给后台线程的 workItem 结束时执行此操作。
NSProgressIndicator.startAnimation(self)
let workItem = DispatchWorkItem {
//
// Some tasks
//
// This doesn't work, how do I call it on main thread?
NSProgressIndicator.stopAnimation(self)
}
DispatchQueue.global(qos: .background).async(execute: workItem)
最佳答案
使用 DispatchQueue.main.async
就像在主队列上运行任何代码一样。
let workItem = DispatchWorkItem {
//
// Some tasks
//
DispatchQueue.main.async {
NSProgressIndicator.stopAnimation(self)
}
}
关于swift - 当 workItem 在后台线程上完成时,如何通知主线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48493039/
我是一名优秀的程序员,十分优秀!