在 xcode 中添加声音以通过闪屏加载
我已经为我的应用程序项目设置了启动屏幕,并且希望在启动屏幕加载后立即播放声音(mp3)。我是使用 xcode 的新手,想知道是否有人可以建议我需要输入什么代码/在哪里输入它。
非常感谢
I have set up a splash screen for my app project and would like to have an sound (mp3) play just after the splash screen loads. I am new to using xcode and wondered whether some one could advise on what code I will need to input/where to input it..
Many Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在第一个视图控制器中实现 yourintrosound.wav 系统声音,然后在加载视图控制器后立即使用 appDelegate 播放它:
在您的firstViewController.h
在您的firstViewController.m viewDidLoad< /em>
在您的 AppDelegate.m 应用程序中:didFinishLaunchingWithOptions:
(就在 [window makeKeyAndVisible] 或您实现的任何启动屏幕显示之后)
并且不要忘记 AudioToolbox 框架!
You implement a yourintrosound.wav system sound in the first view controller, then play it with the appDelegate just after the view controller is loaded:
in your firstViewController.h
in your firstViewController.m viewDidLoad
in your AppDelegate.m application: didFinishLaunchingWithOptions:
(just after [window makeKeyAndVisible] or any splash screen display you implemented)
and do dot forget the AudioToolbox framework!