Swift ios日期为毫秒Double或UInt64?

前端之家收集整理的这篇文章主要介绍了Swift ios日期为毫秒Double或UInt64?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不是iOS开发者,但是开始学习 Swift.

我尝试将一些逻辑从Android项目转换为iOS

我有以下方法

func addGroupItemSample(sample : WmGroupItemSample){ // some custom class

    var seconds: NSTimeInterval = NSDate().timeIntervalSince1970
    var  cuttDate:Double =  seconds*1000;

    var sampleDate: UInt64 = sample.getStartDate(); // <-- problematic place

if(sampleDate > cuttDate){
   // ....
  }
}

从上面的方法可以看到,sample.getStartDate()返回类型为UInt64.

我以为它很像Java:System.currentTimeMillis()

但当前时间(以毫秒为单位)定义为Double.

混合Double和UInt64是否正确的方式,或者我需要代表所有毫秒为双倍?

谢谢,

Swift不允许比较不同类型.

秒是具有秒秒精度的双浮点值(以秒为单位).
sampleDate是一个UInt64,但没有给出单位.
sampleDate需要以秒为单位转换为双浮点值.

var sampleDate: Double = Double(sample.getStartDate())

然后他们可以比较:

if(sampleDate > cuttDate){}
原文链接:https://www.f2er.com/swift/319781.html

猜你在找的Swift相关文章