码迷,mamicode.com
首页 > Windows程序 > 详细

Closure use of non-escaping parameter 'xxx' may allow it to escape

时间:2019-02-21 12:25:28      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:cape   nbsp   UNC   parameter   param   after   delay   异步   bsp   

新版的Swift闭包做参数默认是@noescaping,不再是@escaping。所以如果函数里异步执行该闭包,要添加@escaping。否则报错:Closure use of non-escaping parameter ‘xxx‘ may allow it to escape.

func delay(seconds: Double, completion: @escaping () -> Void) {
    DispatchQueue.main.asyncAfter(deadline: .now() + seconds) {
        completion()
    }
}

 

Closure use of non-escaping parameter 'xxx' may allow it to escape

标签:cape   nbsp   UNC   parameter   param   after   delay   异步   bsp   

原文地址:https://www.cnblogs.com/liuyongfa/p/10411441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!