我正在使用UISlider作为iphone音乐播放器中的搜索栏,但是当我将滑块拖动到快速歌曲时,这首歌不会寻找

时间:2013-11-20 10:01:46

标签: ios iphone xcode

-(void)updateElapsedTime
{
   if (_audioPlayer)
   {
      if ([_audioPlayer isPlaying]==YES)
      {
          _ProgressSeekSlider.value=[_audioPlayer currentTime] / [_audioPlayer duration];//UISLider
      }

      [_StartTimeLbl setText:[NSString stringWithFormat:@"%@",[self formatTime:[_audioPlayer currentTime]]]];//Start Time Label which shows Time elapsed of song

      [_EndTimeLbl setText:[NSString stringWithFormat:@"%@",[self formatTime:[_audioPlayer duration]]]];//Label which shows the total song duration
   }
   [self updatePlayPauseImage];
   [self updateSongName];
   [self updateSeekBar];
}

当我拖动ProgreeSeekSlider转发一首歌时,它会回到过去的时间,但不会寻找这首歌。 我希望这个滑块也能找到这首歌

0 个答案:

没有答案