博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
手机震动效果--ios
阅读量:6536 次
发布时间:2019-06-24

本文共 651 字,大约阅读时间需要 2 分钟。

  hot3.png

1.实现手机震动效果,代码如下:

需要加入AudioToolbox.framework框架,并倒入头文件#import

- (void)viewDidLoad{    [super viewDidLoad];    UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];    [btn setTitle:@"点击" forState:UIControlStateNormal];    btn.frame = CGRectMake(100, 100, 200, 50);    [btn addTarget:self action:@selector(shake:)     forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:btn];// Do any additional setup after loading the view, typically from a nib.}- (void)shake:(id)sender{    AudioServicesPlayAlertSound(kSystemSoundID_Vibrate); //kSystemSoundID_Vibrate系统震动}

注意:ipod是不支持震动的。

转载于:https://my.oschina.net/anyson/blog/112135

你可能感兴趣的文章
创建Visual Studio项目模版向导的几篇参考文章
查看>>
深入浅出SQL Server Replication第一篇:走近Replication(上)
查看>>
[TopCoder][SRM] SRM 562 DIV 2
查看>>
SQLSERVER是怎麽通过索引和统计信息来找到目标数据的(第一篇)
查看>>
LocalAlloc,VirtualAlloc,malloc,new的异同
查看>>
回调函数
查看>>
win7 x64 jdk1.7.0_51
查看>>
这些开源项目,你都知道吗?(持续更新中...)[原创]
查看>>
linux中利用iptables+geoip过滤指定IP
查看>>
在myeclipse中写sql语句的细节问题
查看>>
使用ShellExecute打开目标文件所在文件夹并选中目标文件
查看>>
HDU 4614 Vases and Flowers (2013多校2 1004 线段树)
查看>>
Minix中的字符判定ctype.c
查看>>
91平台iOS接入demo
查看>>
用js实现table内容从下到上连续滚动
查看>>
基于ffmpeg的流媒体服务器
查看>>
项目积累——Blockingqueue,ConcurrentLinkedQueue,Executors
查看>>
JVM学习笔记(一)------基本结构
查看>>
活动目录之备份与恢复
查看>>
删除 Eclipse 的 configuration 目录
查看>>