我正在播放歌曲AVPlayer
。我为我的媒体播放器和初始化创建了一个单独的视图控制器,我用于播放器的所有方法(播放、暂停、重复、随机播放)都在同一个视图控制器中。
我像这样更新一个滑块:
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(sliderUpdate:) userInfo:nil repeats:YES];`
- (void) sliderUpdate:(id) sender{
int currentTime = (int)((song.player.currentTime.value)/song.player.currentTime.timescale);
slider.value=currentTime;
NSLog(@"%i",currentTime);
song.currentTime=currentTime;
int currentPoint=(int)((song.player.currentTime.value)/song.player.currentTime.timescale);
int pointMins=(int)(currentPoint/60);
int pointSec=(int)(currentPoint%60);
NSString *strMinlabel=[NSString stringWithFormat:@"%02d:%02d",pointMins,pointSec];
lblSlidermin.text=strMinlabel;
song.strslidermin=strMinlabel;
}
一旦我离开视图控制器,当我再次出现时,歌曲正在播放,但问题是滑块没有更新。所以我创建了一个单例类来分配当前播放的歌曲细节。同样在滑块更新中,我playerCurrentTime
为单例类变量分配了(滑块当前值)。我的viewdidload
方法是这样分配的:
if (song.isPlaying==NO) {
[self prePlaySong];
}else{
lblAlbum.text=song.currentAlbum;
lblArtist.text=song.currentArtist;
lblSong.text=song.currentSong;
slider.value=song.currentTime;
slider.maximumValue=song.sliderMax;
slider.minimumValue=song.sliderMin;
imgSong.image=song.songImage;
[btnMiddle setBackgroundImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateNormal];
}
但滑块没有得到更新。为什么会这样,我该如何解决这个问题?