我正在使用NSDate根据当前时区获取NSTimeInterval。 但是我得到了与UTC相关的信息。 我正在使用像“dateWithTimeIntervalSinceNow”和“dateWithTimeIntervalSince1970”这样的方法 如何根据我的时区获得时间间隔?
答案 0 :(得分:0)
答案 1 :(得分:-1)
如果两者都是NSDates,那么你可以这样做:
//calculate the time difference in seconds, that is absolute and does not depend in time zones :)
double timeDiffInSecs = [date1 timeIntervalSince1970] - [date2 timeIntervalSince1970];