如何在 iOS5 上以编程方式使铃声静音或更改铃声
iOS5上有没有办法降低铃声音量或更改铃声?
我检查了 Celestial 框架,但无法实例化 AVSystemController。 :-(
我不在乎这个应用程序是否在 AppStore 中被拒绝,因为它永远不会被提交。
Is there a way to reduce the volume of the ringer or change the ringer tone on iOS5?
I checked out the Celestial framework, but can't instantiate AVSystemController. :-(
I don't care if this get's the app rejected in the AppStore as it will never be submitted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。使用 AVSystemController。你没有实例化它。这是一个单例。
http:// /code.google.com/p/iphone-dev/source/browse/trunk/include/include/Celestial/AVSystemController.h?r=136
Yes. Use
AVSystemController
. You don't instantiate it. It's a singleton.http://code.google.com/p/iphone-dev/source/browse/trunk/include/include/Celestial/AVSystemController.h?r=136
这可能就是您正在寻找的内容:覆盖 iPhone 应用程序中的铃声音量< /a>
基本上,您可以在正在显示的视图的 -(void)viewDidLoad 方法上使用 AVAudioPlayer 设置音量
This might be what you are looking for: Override ringer volume in iPhone apps
Basically, you set the volume using AVAudioPlayer on the -(void)viewDidLoad method of the view you are displaying on