Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ビデオの合計時間を見つけるために「 moviePlayer.duration 」を使用していますが、フロート値のみを取得しています。フロート値を時間形式「HH-MM-SS」に変換する方法
{ duration=moviePlayer.duration; }
要件に応じてメソッドを使用します。
- (NSString *)timeFormatted:(float)totalSeconds { float seconds = totalSeconds % 60; float minutes = (totalSeconds / 60) % 60; float hours = totalSeconds / 3600; return [NSString stringWithFormat:@"%02f:%02f:%02f",hours, minutes, seconds]; }