Jeśli mam NSTimeInterval, który jest ustawiony na 200.0, czy istnieje sposób na przekonwertowanie go na 00:03:20, myślałem, że mógłbym zainicjować NSDate z nim, a następnie użyć NSDateFormatter przy użyciu HH: mm: ss. Moje pytanie brzmi: czy istnieje szybki sposób, aby to zrobić, czy też muszę sam podzielić numer i użyć [NSString stringWithFormat: %02d:%02d:%02d, myHour, myMin, mySec]
?
iphone
objective-c
cocoa-touch
fuzzygoat
źródło
źródło
NSDateComponentsFormatter().stringFromTimeInterval(NSTimeInterval(duration))
w swiftW systemie iOS 8 użyj
NSDateComponentsFormatter
.NSDateComponentsFormatter *dateComponentsFormatter = [[NSDateComponentsFormatter alloc] init]; NSLog(@"%@", [dateComponentsFormatter stringFromTimeInterval:200.0]);
wyświetla „3:20”.
NSDateComponentsFormatter *dateComponentsFormatter = [[NSDateComponentsFormatter alloc] init]; dateComponentsFormatter.zeroFormattingBehavior = NSDateComponentsFormatterZeroFormattingBehaviorPad; dateComponentsFormatter.allowedUnits = (NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond); NSLog(@"%@", [dateComponentsFormatter stringFromTimeInterval:200.0]);
wyświetla "0:03:20".
źródło
Odpowiedź w Swift 3 wersji onmyway133 :
import Foundation func format(_ duration: TimeInterval) -> String { let formatter = DateComponentsFormatter() formatter.zeroFormattingBehavior = .pad formatter.allowedUnits = [.minute, .second] if duration >= 3600 { formatter.allowedUnits.insert(.hour) } return formatter.string(from: duration)! } print(format(12)) // 0:12 print(format(65)) // 1:05 print(format(1750)) // 29:10 print(format(3890)) // 1:04:50 print(format(45720)) // 12:42:00
źródło
zeroFormattingBehavior
na[.dropLeading, .pad]
może być lepszą opcją (mniej kodu).Kilka dodatkowych wierszy kodu, ale wydaje mi się, że użycie NSDateComponents da bardziej precyzyjną wartość.
- (NSString *)getTimeRepresentationFromDate:(NSDate *)iDate withTimeInterval:(NSTimeInterval)iTimeInterval { NSString *aReturnValue = nil; NSDate *aNewDate = [iDate dateByAddingTimeInterval:iTimeInterval]; unsigned int theUnits = NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit; NSCalendar *aCalender = [NSCalendar currentCalendar]; NSDateComponents *aDateComponents = [aCalender components:theUnits fromDate:iDate toDate:aNewDate options:0]; aReturnValue = [NSString stringWithFormat:@"%d:%d:%d", [aDateComponents hour], [aDateComponents minute], [aDateComponents second]]; return aReturnValue; }
źródło
W Swift 2 , iOS 8+ . Dzięki temu wyświetlamy godzinę tylko wtedy, gdy jest to konieczne
func format(duration: NSTimeInterval) -> String { let formatter = NSDateComponentsFormatter() formatter.zeroFormattingBehavior = .Pad if duration >= 3600 { formatter.allowedUnits = [.Hour, .Minute, .Second] } else { formatter.allowedUnits = [.Minute, .Second] } return formatter.stringFromTimeInterval(duration) ?? "" }
Więc masz
print(format(12)) // 0:12 print(format(65)) // 1:05 print(format(1750)) // 29:10 print(format(3890)) // 1:04:50 print(format(45720)) // 12:42:00
źródło
NSTimeInterval ti = 3667; double hours = floor(ti / 60 / 60); double minutes = floor((ti - (hours * 60 * 60)) / 60); double seconds = floor(ti - (hours * 60 * 60) - (minutes * 60));
źródło
Szybki 4
dawny:
DateComponentsFormatter().string(from: 59.0)
źródło
Aby „rozszerzyć” sugestię Matthiasa Baucha, w Swift uczyniłbym z tego obliczoną właściwość NSTimeInterval:
extension NSTimeInterval { var stringValue: String { let interval = Int(self) let seconds = interval % 60 let minutes = (interval / 60) % 60 let hours = (interval / 3600) return String(format: "%02d:%02d:%02d", hours, minutes, seconds) } }
Zaletą tego jest to, że jest on powiązany z
NSTimeInterval
typem, a nie z kontrolerem widoku lub gdziekolwiek indziej umieścisz tę funkcję. Aby użyć, podałbyś coś takiego:let timeInterval = NSDate().timeIntervalSinceDate(start) self.elapsedTimeLabel.text = timeInterval.stringValue
źródło
Na podstawie odpowiedzi udzielonej przez @ onmyway133 jest to wersja Swift 4:
func format(duration: TimeInterval) -> String { let formatter = DateComponentsFormatter() formatter.zeroFormattingBehavior = .pad if duration >= 3600 { formatter.allowedUnits = [.hour, .minute, .second]; } else { formatter.allowedUnits = [.minute, .second]; } return formatter.string(from: duration) ?? ""; }
źródło
prosto z apple docs: w pliku h:
@property(strong,nonatomic)NSDateComponentsFormatter *timerFormatter;
w pliku m
@synthesize timerFormatter; - (void)viewDidLoad { [super viewDidLoad]; NSDateComponentsFormatter *timerFormatter = [[NSDateComponentsFormatter alloc] init]; timerFormatter.unitsStyle = NSDateComponentsFormatterUnitsStylePositional; //10:59 Positional THIS ONE DOES NOT SEEM TO WORK iOS<9 WHEN <1Minute JUST SHOWS 01, 10m 59s Abbreviated, 10min 59sec Short, 10minutes 59seconds Full ... timerFormatter.allowedUnits = NSCalendarUnitHour|NSCalendarUnitMinute|NSCalendarUnitSecond; }
gdziekolwiek chcesz przekonwertować swój NSTimeInterval timeInterval na ciąg hh: mm: ss, zrób to:
NSString *txt=[timerFormatter stringFromTimeInterval:timeInterval];
źródło
Wydaje mi się, że część timera powinna zostać ograniczona. Ponieważ kod Matthiasa tworzył ten problem w ciągu kilku sekund, używam następującego nieco zmodyfikowanego kodu Matthiasa
- (NSString *)stringFromTimeInterval:(NSTimeInterval)interval { int ti = (int) ceil(interval); int seconds = ti % 60; int minutes = (ti / 60) % 60; int hours = (ti / 3600); return [NSString stringWithFormat:@"%02d:%02d:%02d",hours, minutes, seconds]; }
źródło
Cel C wersja onmyway133 za odpowiedź
- (NSString*) formatTimeInterval:(NSTimeInterval) timeInterval { NSDateComponentsFormatter *formatter = [[NSDateComponentsFormatter alloc] init]; formatter.zeroFormattingBehavior = NSDateComponentsFormatterZeroFormattingBehaviorPad; if (timeInterval > 3600) { formatter.allowedUnits = NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond; } else { formatter.allowedUnits = NSCalendarUnitMinute | NSCalendarUnitSecond; } return [formatter stringFromTimeInterval:timeInterval]; }
źródło