swift实现dispatch_after

前端之家收集整理的这篇文章主要介绍了swift实现dispatch_after前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
let delayTime = dispatch_time(DISPATCH_TIME_NOW,Int64(30 * Double(NSEC_PER_SEC)))
        dispatch_after(delayTime,dispatch_get_main_queue()) { () -> Void in
            print("延迟30秒")
        }
原文链接:https://www.f2er.com/swift/323251.html

猜你在找的Swift相关文章