基本的なオーディオAVPlayer
インスタンスでは、HLS ストリームを再生し、Now Playing 情報を (正常に) 設定していますが、MPNowPlayingInfoCenter
設定されている のプロパティにアクセスできません。
category
とのactive
ステータスも問題なくリモート コントロール イベントを受信AVAudioSession
しています。
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:title forKey:MPMediaItemPropertyTitle];
// Set several other properties
MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
[center setNowPlayingInfo:properties];
// Works! The lock screen successfully shows the title and other properties
NSLog("%@", [center nowPlayingInfo]);
は、ログ中にオーディオが再生されているため、とにかく正確ではありませNSLog
んMPNowPlayingInfoPropertyPlaybackRate
。0
現在設定されているプロパティのディクショナリを取得し、いくつかを更新して、再度設定します (アルバム アートの更新、再生/一時停止のタイミングなど)。何が欠けていますか?