我无法找到准确的答案,但我想做的就是:
我正在使用此代码:
git checkout --orphan
日历应用程序会打开,但会在一些随机的年份(2066年1月3日下午3点)打开。
任何人都可以为此提供swift 3代码吗?
干杯〜
答案 0 :(得分:0)
iOS不会使用timeIntervalSince1970
作为"纪元日期。"您应该使用timeIntervalSinceReferenceDate
代替:
//Convert the time from the server into a Date object
let seconds = TimeInterval(timeInMiliFromBackEnd/1000)
let date = Date(timeIntervalSince1970: seconds)
//Convert the Date object into the number of seconds since the iOS "epoch date"
let interval = date.timeIntervalSinceReferenceDate
if let url = URL(string: "calshow:\(interval)") {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
(上面的代码已更新为使用较新的open(_:options:completionHandler:)
方法,而不是现已弃用的openURL(_:)
方法。)