AVPlayer からの現在の時刻で UISlider を更新しようとしています。NSTimer を使用して、このコードで 1 秒ごとにメソッドを呼び出します。
CMTime duration = audioPlayer.currentTime;
float seconds = CMTimeGetSeconds(duration);
NSLog(@"duration: %.2f", seconds);
nowPlayingSlider.value = seconds;
時間は正しく記録されていますが、uislider は更新されません。