以编程方式使 iPhone 振动

发布于 2024-08-17 18:27:57 字数 215 浏览 6 评论 0原文

可能的重复:
让 iPhone 振动

如何以编程方式使 iPhone 振动?

任何想法或教程链接表示赞赏。

Possible Duplicate:
Making the iPhone vibrate

How can you programmatically make the iPhone vibrate?

Any ideas, or tutorial links appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

メ斷腸人バ 2024-08-24 18:27:57

可以使用

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); 

注意,需要添加AudioToolbox框架并导入以下头文件:

#import <AudioToolbox/AudioServices.h>

You can use

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); 

Note that you need to add the AudioToolbox framework and import the following header file:

#import <AudioToolbox/AudioServices.h>
挖个坑埋了你 2024-08-24 18:27:57

为了澄清此答案的添加(ing)AudioToolbox框架部分:

  1. 从项目导航器中单击项目
  2. ,单击左侧导航器中的目标,
  3. 单击构建阶段部分顶部
  4. 展开链接二进制文件与库部分,
  5. 单击小+(加号)符号
  6. 类型AudioToolbox.framework
  7. 单击添加

To clarify the add(ing) the AudioToolbox framework portion of this answer:

  1. click the project from Project Navigator
  2. click the target from the left-hand navigator
  3. click Build Phases section at the top
  4. expand the Link Binary With Libraries section
  5. click little + (plus) sign
  6. type AudioToolbox.framework
  7. click Add
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文