从我们的应用程序播放语音时暂停 iPod,然后再恢复
我想做一个有声音提示的应用程序。场景是这样的: 1.ipod播放音乐 2.用户启动我的应用程序 3.我的应用程序决定提示语音 4. ipod 音乐静音或声音更小 5.我的应用程序会发出声音提示直到完成 6. ipod 音乐恢复到原始音量
有什么办法吗?
I would like to make an application that prompt a voice. the scenario is like this:
1. ipod playing music
2. user start my apps
3. my apps is deciding to prompt a voice
4. ipod music become MUTE or SOFTER VOICE
5. my apps prompt a voice until finish
6. ipod music RESUME to original volume
any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上很容易。我从 stackoverflow.com/questions/4138247/… 找到了答案。我们可以得到ipod的实例,代码应该是这样的: [[MPMusicPlayerController iPodMusicPlayer]暂停]; //做任何你想做的事 [[MPMusicPlayerController iPodMusicPlayer] play];
it is actually kinda easy. i found the answer from stackoverflow.com/questions/4138247/… . we can get the instance of ipod the code should be like this: [[MPMusicPlayerController iPodMusicPlayer] pause]; //do whatever you want [[MPMusicPlayerController iPodMusicPlayer] play];