赞
踩
对于比较短促的声音,比如系统的推送声音和短信声音,官方要求不要超过30s。
开始播放
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"done" ofType:@"wav"];
NSURL *fileUrl = [NSURL URLWithString:filePath];
SystemSoundID soundID = 0;
AudioServicesCreateSystemSoundID((__bridge CFURLRef)(fileUrl), &soundID);
AudioServicesAddSystemSoundCompletion(soundID,NULL,NULL,soundCompleteCallBack,NULL);
AudioServicesPlaySystemSound(soundID);
播放完成
v
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。