我有以下代码:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) {
// Do stuff in the backgroud
dispatch_async(dispatch_get_main_queue()) {
// Do stuff on the UI thread
}
}
但是,它将无法编译。内部调用dispatch_async返回以下编译错误:
Cannot invoke 'init' with an argument list of type '(dispatch_queue_t!, () -> () -> $T3)'
我似乎无法弄清楚如何编写此代码,以使其像以前在Objective C中一样能够工作。谢谢您的任何想法!
最佳答案
如果Swift中的闭包仅包含一个表达式,则可以具有隐式返回(请参阅:Implicit Returns from Single-Expression Closures)。您的内部闭包很可能在其中包含一个表达式来更新UI。编译器使用该表达式的结果作为闭包的返回值,这使闭包的签名与dispatch_async
所需的签名不匹配。由于dispatch_async
需要一个返回()
(或Void
)的闭包,因此解决方法是仅在闭包末尾添加一个显式的return
:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) {
// Do stuff in the backgroud
dispatch_async(dispatch_get_main_queue()) {
// Do stuff on the UI thread
return
}
}
关于ios - 在Swift中找出Grand Central Dispatch的语法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26447438/