美文网首页
swift – 使用DispatchTime.now()floa

swift – 使用DispatchTime.now()floa

作者: yunxiu | 来源:发表于2023-05-10 11:37 被阅读0次

dispatchTime.Now()究竟发生了什么

为什么我不能指定等待变量的时间?

我怎么能使用变量?

给定错误>>>

Binary operator ‘+’ cannot be applied to operands of type

dispatchTime’ and ‘Float’

var time : Float = 2.2 // <---time

@IBAction func buttonpressed(_ sender: Any) {

    let when = dispatchTime.Now() + 2.2 // <---- THIS IS OKAY

    dispatchQueue.main.asyncAfter(deadline: when){

        print("Hello")

    }

    let whenWhen = dispatchTime.Now() + time // <---- THIS IS NOT OKAY

    dispatchQueue.main.asyncAfter(deadline: whenWhen){

        print("Hello")

    }

}

解决方法

dispatchTime.Now()是一个双精度数.您不能将float和double值一起添加. (关于为什么不能添加不同类型的值的小解释,可以找到 here).

更换

var time: Float = 2.2

var time: Double = 2.2

它会工作正常.

相关文章

网友评论

      本文标题:swift – 使用DispatchTime.now()floa

      本文链接:https://www.haomeiwen.com/subject/gstjsdtx.html