我正在尝试使用NSDate()
在Swift中获取当前日期。当我创建断点并停止应用程序时,我可以看到设备有3个小时的差异'系统时间。应用程序在真正的iPhone上运行。如何解决这个问题?
我还在App Delegate中写了以下内容以确定:
NSTimeZone.setDefaultTimeZone(NSTimeZone(name: "Europe/Kiev")!)
但它仍然不起作用。
答案 0 :(得分:11)
它没有返回错误的时间。它返回的时间恰到好处。 NSDate没有任何时区信息。现在,当我们调用NSDate()时,我的计算机和计算机将报告完全相同的时间。
NSLog以UTC格式显示NSDate。这就是它所显示的内容。因此,如果我们现在都调用NSLog,您的计算机将记录与我的相同的日期和时间。因为它是相同的日期和时间。
如果要处理NSDate(例如,向用户显示日期和时间),请使用NSCalendar。 NSCalendar在世界各地的NSDate与您希望在用户界面中显示的值之间进行转换,这在伦敦或基辅会有所不同。如果我现在看一下手表,我会看到与你在手表上看到的不同的时间,这就是NSCalendar的用途。
答案 1 :(得分:7)
以下是swift 3.0的转换:
func getCurrentLocalDate()-> Date {
var now = Date()
var nowComponents = DateComponents()
let calendar = Calendar.current
nowComponents.year = Calendar.current.component(.year, from: now)
nowComponents.month = Calendar.current.component(.month, from: now)
nowComponents.day = Calendar.current.component(.day, from: now)
nowComponents.hour = Calendar.current.component(.hour, from: now)
nowComponents.minute = Calendar.current.component(.minute, from: now)
nowComponents.second = Calendar.current.component(.second, from: now)
nowComponents.timeZone = TimeZone(abbreviation: "GMT")!
now = calendar.date(from: nowComponents)!
return now as Date
}
答案 2 :(得分:1)
还值得检查您的测试设备日期/时间是否设置为较旧的日期。
答案 3 :(得分:0)
对于 Swift 2.2 ,这个功能对我起了作用:
func getCurrentLocalDate()-> NSDate {
var now = NSDate()
let nowComponents = NSDateComponents()
let calendar = NSCalendar.currentCalendar()
nowComponents.year = NSCalendar.currentCalendar().component(NSCalendarUnit.Year, fromDate: now)
nowComponents.month = NSCalendar.currentCalendar().component(NSCalendarUnit.Month, fromDate: now)
nowComponents.day = NSCalendar.currentCalendar().component(NSCalendarUnit.Day, fromDate: now)
nowComponents.hour = NSCalendar.currentCalendar().component(NSCalendarUnit.Hour, fromDate: now)
nowComponents.minute = NSCalendar.currentCalendar().component(NSCalendarUnit.Minute, fromDate: now)
nowComponents.second = NSCalendar.currentCalendar().component(NSCalendarUnit.Second, fromDate: now)
nowComponents.timeZone = NSTimeZone(abbreviation: "GMT")
now = calendar.dateFromComponents(nowComponents)!
return now
}
如果您想要一个不同的时区,您可以直接更改它,甚至更好,将其作为函数参数传递。
答案 4 :(得分:0)
您还可以使用Locale获取当前时间和日期。
let today = NSDate()
let locale = NSLocale.current
print("Time of today: \(today.description(with: locale))")
答案 5 :(得分:0)
此func在当前时区返回Now。
func convertDate(date:Date) -> Date {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
var comp = DateComponents()
let calendar = Calendar.current
comp.year = Calendar.current.component(.year, from: date)
comp.month = Calendar.current.component(.month, from: date)
comp.day = Calendar.current.component(.day, from: date)
comp.hour = Calendar.current.component(.hour, from: date)
comp.minute = Calendar.current.component(.minute, from: date)
comp.second = Calendar.current.component(.second, from: date)
comp.timeZone = TimeZone(abbreviation: "GMT")
var dateFromCalendar = Date()
if let calendarDate = calendar.date(from: comp) {
dateFromCalendar = calendarDate
}
return dateFromCalendar
}
使用:
let now = Date()
let convertedDate = convertDate(date: now)