AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
但这是使用系统的声音.有没有办法使用我自己的声音?我可以使用的声音格式是什么?
解决方法 检查 AudioServicesPlayAlertSound,如果用户在声音设置中启用了振动,这将播放自定义声音并振动.正确使用将是这样的……SystemSoundID soundfileObject;NSURL * soundfileURL= [[NSBundle mainBundle] URLForResource: @"mySoundfile" withExtension: @"aif"];CFURLRef soundfileURLRef = (CFURLRef) [soundfileURL retain];AudioServicesCreateSystemSoundID (soundfileURLRef,&soundfileObject);AudioServicesPlayAlertSound (soundfileObject);
根据上面的链接,支持的文件类型是.caf,.aif或.wav.希望有所帮助!
总结以上是内存溢出为你收集整理的用自定义声音振动iphone / ipod全部内容,希望文章能够帮你解决用自定义声音振动iphone / ipod所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)