我想在我的应用中显示播放歌曲的剩余时间,我的代码:
NSTimeInterval currentTime= musicPlayer.currentPlaybackTime;
NSNumber *duration = [musicPlayer.nowPlayingItem valueForProperty:MPMediaItemPropertyPlaybackDuration];
NSLog(@"Current Playback Time: %f",currentTime);
答案 0 :(得分:5)
如果您想重现音乐应用中显示的时间:
double nowPlayingItemDuration = [[[musicPlayer nowPlayingItem] valueForProperty:MPMediaItemPropertyPlaybackDuration]doubleValue];
double currentTime = (double) [musicPlayer currentPlaybackTime];
double remainingTime = nowPlayingItemDuration - currentTime;
NSString *timeElapsed;
NSString *timeRemaining;
if (nowPlayingItemDuration >= 3600.0) {
timeElapsed = [NSString stringWithFormat: @"%02d:%02d:%02d",
(int)currentTime/3600,
(int) (currentTime/60)%60,
(int) currentTime%60];
timeRemaining = [NSString stringWithFormat:@"- %02d:%02d:%02d",
(int)remainingTime/3600,
(int) (remainingTime/60)%60,
(int) remainingTime%60];
} else {
timeElapsed = [NSString stringWithFormat: @"%02d:%02d",
(int) currentTime/60,
(int) currentTime%60];
timeRemaining = [NSString stringWithFormat:@"- %02d:%02d",
(int) remainingTime/60,
(int) remainingTime%60];
}
答案 1 :(得分:0)
MPMediaItem *temp; NSTimeInterval trackLength = [[temp valueForProperty:MPMediaItemPropertyPlaybackDuration] doubleValue]; song.songDuration = [temp valueForProperty:MPMediaItemPropertyPlaybackDuration];
NSTimer *timer= [NSTimer scheduledTimerWithTimeInterval:1
target:self
selector:@selector(updateProgress)
userInfo:nil
repeats:YES];
-(void) updateProgress{
itemDur++;
WASong *song = [self.songObjects objectAtIndex:self.cellIndexPath.row];
CGFloat progress =itemDur/[song.songDuration doubleValue];
}