我seconds
从某个事件中得到了很多。它存储在NSTimeInterval
数据类型中。
我想将其转换为minutes
和seconds
。
例如,我有:“ 326.4”秒,我想将其转换为以下字符串:“ 5:26”。
实现这个目标的最佳方法是什么?
谢谢。
我seconds
从某个事件中得到了很多。它存储在NSTimeInterval
数据类型中。
我想将其转换为minutes
和seconds
。
例如,我有:“ 326.4”秒,我想将其转换为以下字符串:“ 5:26”。
实现这个目标的最佳方法是什么?
谢谢。
Answers:
伪代码:
minutes = floor(326.4/60)
seconds = round(326.4 - minutes * 60)
简要描述;简介
使用NSCalendar方法:
(NSDateComponents *)components:(NSUInteger)unitFlags fromDate:(NSDate *)startingDate toDate:(NSDate *)resultDate options:(NSUInteger)opts
“使用指定的组件作为两个NSDateComponents对象返回两个提供的日期之间的差”。来自API文档。
创建2个NSDate,其差异是要转换的NSTimeInterval。(如果您的NSTimeInterval来自比较2个NSDate,则不需要执行此步骤,甚至不需要NSTimeInterval)。
从NSDateComponents获取报价
样例代码
// The time interval
NSTimeInterval theTimeInterval = 326.4;
// Get the system calendar
NSCalendar *sysCalendar = [NSCalendar currentCalendar];
// Create the NSDates
NSDate *date1 = [[NSDate alloc] init];
NSDate *date2 = [[NSDate alloc] initWithTimeInterval:theTimeInterval sinceDate:date1];
// Get conversion to months, days, hours, minutes
unsigned int unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit | NSDayCalendarUnit | NSMonthCalendarUnit;
NSDateComponents *conversionInfo = [sysCalendar components:unitFlags fromDate:date1 toDate:date2 options:0];
NSLog(@"Conversion: %dmin %dhours %ddays %dmoths",[conversionInfo minute], [conversionInfo hour], [conversionInfo day], [conversionInfo month]);
[date1 release];
[date2 release];
已知的问题
%ld
如果您使用的是64位计算机。
所有这些看起来都比他们需要的复杂!这是将时间间隔转换为小时,分钟和秒的简短而甜美的方法:
NSTimeInterval timeInterval = 326.4;
long seconds = lroundf(timeInterval); // Since modulo operator (%) below needs int or long
int hour = seconds / 3600;
int mins = (seconds % 3600) / 60;
int secs = seconds % 60;
请注意,当您将浮点数放入int时,会自动获得floor(),但是如果感觉更好,可以将其添加到前两个中:-)
原谅我是一名堆栈处女...我不确定如何回复Brian Ramsay的回答...
对于59.5到59.99999之间的第二个值,使用round无效。在此期间,第二个值为60。改用trunc ...
double progress;
int minutes = floor(progress/60);
int seconds = trunc(progress - minutes * 60);
如果您的目标是iOS 8或OS X 10.10或更高版本,这将变得容易得多。新NSDateComponentsFormatter
类允许您转换给定的NSTimeInterval
的值(以秒为单位)转换为本地化字符串以显示给用户。例如:
目标C
NSTimeInterval interval = 326.4;
NSDateComponentsFormatter *componentFormatter = [[NSDateComponentsFormatter alloc] init];
componentFormatter.unitsStyle = NSDateComponentsFormatterUnitsStylePositional;
componentFormatter.zeroFormattingBehavior = NSDateComponentsFormatterZeroFormattingBehaviorDropAll;
NSString *formattedString = [componentFormatter stringFromTimeInterval:interval];
NSLog(@"%@",formattedString); // 5:26
迅速
let interval = 326.4
let componentFormatter = NSDateComponentsFormatter()
componentFormatter.unitsStyle = .Positional
componentFormatter.zeroFormattingBehavior = .DropAll
if let formattedString = componentFormatter.stringFromTimeInterval(interval) {
print(formattedString) // 5:26
}
NSDateCompnentsFormatter
还允许此输出采用更长的形式。可以在NSHipster的NSFormatter文章中找到更多信息。而且,根据您已经在使用的类(如果不是NSTimeInterval
),向格式化程序传递NSDateComponents
,或两个NSDate
对象的实例可能会更方便,这也可以通过以下方法来完成。
目标C
NSString *formattedString = [componentFormatter stringFromDate:<#(NSDate *)#> toDate:<#(NSDate *)#>];
NSString *formattedString = [componentFormatter stringFromDateComponents:<#(NSDateComponents *)#>];
迅速
if let formattedString = componentFormatter.stringFromDate(<#T##startDate: NSDate##NSDate#>, toDate: <#T##NSDate#>) {
// ...
}
if let formattedString = componentFormatter.stringFromDateComponents(<#T##components: NSDateComponents##NSDateComponents#>) {
// ...
}
switch
或if else
与此声明。NSDateComponentsFormatter
照顾好一切。时,分,秒打印无后顾之忧。
伪造了Brian Ramsay的代码:
- (NSString*)formattedStringForDuration:(NSTimeInterval)duration
{
NSInteger minutes = floor(duration/60);
NSInteger seconds = round(duration - minutes * 60);
return [NSString stringWithFormat:@"%d:%02d", minutes, seconds];
}
这是Swift版本:
func durationsBySecond(seconds s: Int) -> (days:Int,hours:Int,minutes:Int,seconds:Int) {
return (s / (24 * 3600),(s % (24 * 3600)) / 3600, s % 3600 / 60, s % 60)
}
可以这样使用:
let (d,h,m,s) = durationsBySecond(seconds: duration)
println("time left: \(d) days \(h) hours \(m) minutes \(s) seconds")
NSDate *timeLater = [NSDate dateWithTimeIntervalSinceNow:60*90];
NSTimeInterval duration = [timeLater timeIntervalSinceNow];
NSInteger hours = floor(duration/(60*60));
NSInteger minutes = floor((duration/60) - hours * 60);
NSInteger seconds = floor(duration - (minutes * 60) - (hours * 60 * 60));
NSLog(@"timeLater: %@", [dateFormatter stringFromDate:timeLater]);
NSLog(@"time left: %d hours %d minutes %d seconds", hours,minutes,seconds);
输出:
timeLater: 22:27
timeLeft: 1 hours 29 minutes 59 seconds
由于本质上是双重的...
除以60.0并提取整数部分和小数部分。
不可分割的部分将是分钟的总数。
再次将小数部分乘以60.0。
结果将是剩余的秒数。
请记住,最初的问题与字符串输出有关,而不是伪代码或单个字符串组成部分。
我想将其转换为以下字符串:“ 5:26”
许多答案都缺少国际化问题,大多数答案是手工进行的。都是20世纪...
let timeInterval: TimeInterval = 326.4
let dateComponentsFormatter = DateComponentsFormatter()
dateComponentsFormatter.unitsStyle = .positional
if let formatted = dateComponentsFormatter.string(from: timeInterval) {
print(formatted)
}
5:26
如果您确实想要单独的组件以及令人愉悦的代码,请查看SwiftDate:
import SwiftDate
...
if let minutes = Int(timeInterval).seconds.in(.minute) {
print("\(minutes)")
}
5
学分@mickmaccallum和@polarwar为充分使用DateComponentsFormatter
Swift 2版本
extension NSTimeInterval {
func toMM_SS() -> String {
let interval = self
let componentFormatter = NSDateComponentsFormatter()
componentFormatter.unitsStyle = .Positional
componentFormatter.zeroFormattingBehavior = .Pad
componentFormatter.allowedUnits = [.Minute, .Second]
return componentFormatter.stringFromTimeInterval(interval) ?? ""
}
}
let duration = 326.4.toMM_SS()
print(duration) //"5:26"