我想知道在ios媒体库接管应用后是否可以插入自己的音频?
示例:在每首歌曲之后播放一段音频,说明您当天收听的歌曲数量。
我知道,因为它的框架只允许你做很多事情。
答案 0 :(得分:2)
这应该是可行的。首先,您可以将您的班级添加为MPMusicPlayerControllerNowPlayingItemDidChangeNotification
的观察者,以便在iPod库中的歌曲发生变化时收到通知。从那里,您可以告诉iPod库暂停,播放曲目,然后继续播放音乐。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(someSel:) name:MPMusicPlayerControllerNowPlayingItemDidChangeNotification object:nil];
[[MPMusicPlayerController iPodMusicPlayer] pause];
// play your sound
[[MPMusicPlayerController iPodMusicPlayer] play];