Swift3 时间戳转换成整型字符串 Double value cannot be converted to Int because the result would be greater than

做项目的时候后台需要传递当前时间戳到后台,本来以后很简单。结果某次转化的时候报错,说 double转换已经超出了Int的的最大值。去stack overflow查了下,原来要这样操作。 参考链接

String(Int64(NSDate().timeIntervalSince1970*1000))

你可能感兴趣的:(Swift3 时间戳转换成整型字符串 Double value cannot be converted to Int because the result would be greater than)