我对计算两个时区之间的时差有问题。
如果我在位置A,我知道经纬度和当前时间。
我去B地点我知道经纬度和当前时间。
如何计算两个当前点之间的时差。(以UTC为单位)

最佳答案

首先获得一个数据库或库,转换LAT/LUN以获得国家和州/省。然后使用NSTEMETZORE类检索特定国家的时区。您可以从许多网站购买此类数据库,即:
http://www.ip2location.com/
要进行实际转换,您需要执行以下操作:

NSTimeZone *sourceTimeZone =
    [NSTimeZone timeZoneWithAbbreviation: @"GMT"];
NSTimeZone *destinationTimeZone =
    [NSTimeZone timeZoneWithAbbreviation: @"EST"];

NSInteger sourceSeconds =
    [sourceTimeZone secondsFromGMTForDate:date];
NSInteger destinationSeconds =
    [destinationTimeZone secondsFromGMTForDate:date];
NSTimeInterval interval = destinationSeconds - sourceSeconds;

10-04 23:17