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

ios 震动

时间:2015-04-01 14:59:58      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

声音可以工作在模拟器,然后一些声音(如循环的)已被证明不能工作,设置在模拟器中成功与否取决于音频格式.注:必须使用.wav格式在这个例子中.
SystemSoundID pmph;
id sndpath = [[NSBundle mainBundle]
    pathForResource:@"mySound"
    ofType:@"wav"
    inDirectory:@"/"];
CFURLRef baseURL = (CFURLRef) [[NSURL alloc] initFileURLWithPath:sndpath];
AudioServicesCreateSystemSoundID (baseURL, &pmph);
AudioServicesPlaySystemSound(pmph);   
[baseURL release];
 
http://blog.sina.com.cn/s/blog_a250468201010ei3.html
 
http://blog.csdn.net/like7xiaoben/article/details/9001806
 
http://blog.csdn.net/like7xiaoben/article/details/8990730
 
http://www.cnblogs.com/wendingding/p/3900112.html

ios 震动

标签:

原文地址:http://www.cnblogs.com/jzlblog/p/4383692.html

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