将 iPhone 振动指定的持续时间
我希望能够在指定的时间内振动 iPhone。使用 AudioToolbox 框架,当我使用以下代码时,它会振动大约 2 秒:
AudioServicesPlaySystemSound (kSystemSoundID_Vibrate);
这可以完成工作,但我宁愿振动更短(或更长)的持续时间,具体取决于用户执行操作的方式,更不用说这可以为游戏开发者带来的好处。
感谢您的任何想法。
I would like to be able to vibrate the iPhone for a specified duration. Using the AudioToolbox framework, it will vibrate for about 2 seconds, when I use this code:
AudioServicesPlaySystemSound (kSystemSoundID_Vibrate);
This does the job, but I'd rather vibrate for a shorter (or longer) duration depending on how the user performed the action, not to mention the benefits this could offer to game developers.
Thanks for any ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置一个 NSTimer 或一个 for 循环,每两秒触发一次振动,并使其看起来像是长时间振动。不确定苹果是否会允许这样做。
You could set a NSTimer or a for loop that would set off a vibration every two seconds and make it seem like a long vibrate. Not sure if Apple would allow this tough.