0

基本的なオーディオ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]);

は、ログ中にオーディオが再生されているため、とにかく正確ではありませNSLogMPNowPlayingInfoPropertyPlaybackRate0

現在設定されているプロパティのディクショナリを取得し、いくつかを更新して、再度設定します (アルバム アートの更新、再生/一時停止のタイミングなど)。何が欠けていますか?

4

1 に答える 1