码迷,mamicode.com
首页 > 移动开发 > 详细

ios播放和振动

时间:2015-12-23 19:15:52      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

 
ios播放和振动
 
使用AudioServicesPlaySystemSound 这个接口来进行声音和震动的播放, 当然需要在工程中加入AudioToolBox.framework

 

1. 播放震动

     

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);

 

 

2. 播放特定的声音

 

static SystemSoundID soundIDTest = 0;

 

NSString * path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"wav"];

if (path) {

      AudioServicesCreateSystemSoundID( (CFURLRef)[NSURL fileURLWithPath:path], &soundIDTest );

}

 

    AudioServicesPlaySystemSound( soundIDTest );

ios播放和振动

标签:

原文地址:http://www.cnblogs.com/linxiu-0925/p/5070705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!