HTTP ライブ ストリーミング(HLS) を使用するiOSプロジェクトに取り組んでいると、アプリが AirPlay を使用して Apple TV でストリーミングを再生すると、AVPlayer ののプロパティが を返すことがわかりました。言い換えると:currentDate
currentItem
nil
AVPlayerItem *item = [player currentItem]; //Where "player" is the AVPlayer object.
NSDate *date = [item currentDate]; //date is nil, when using AirPlay.
それで、他の方法で currentDate を取得することは可能ですか?