在不使用Internet的情况下获取下一分钟时间(UTC)

时间:2013-09-30 08:57:55

标签: iphone ios ipad ipod

我想知道是否有任何方法可以在不使用互联网连接的情况下找到下一分钟的UTC时间。我必须在给定的时间点执行动作(在多个设备上一次播放歌曲而没有延迟)。

1 个答案:

答案 0 :(得分:0)

由于NSDate始终为UTC,您可以:

NSDateComponents *minuteComponent = [[NSDateComponents alloc] init];
minuteComponent.minute = 1;
NSCalendar *theCalendar = [NSCalendar currentCalendar];
NSDate *nextMinuteDate = [theCalendar dateByAddingComponents:minuteComponent toDate:[NSDate date] options:0];
NSLog(@"%@",nextMinuteDate);