IOS基础知识记录二

来源:互联网 发布:uiautomator源码分析 编辑:程序博客网 时间:2024/05/06 18:47
1.提醒用户信息, 铃声提醒或者震动提示
SystemSoundID soundID;    NSString *url = [[NSBundle mainBundle] pathForResource: @"sound" ofType: @"wav"];        AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:url], &soundID);    AudioServicesPlaySystemSound(soundID);   //AudioServicesPlayAlertSound(soundID)


AudioServicesPlaySystemSound如果系统静音, 则用户提示就没有什么效果
AudioServicesPlayAlertSound如果静音会震动,否则声音提示
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);单一的震动
0 0
原创粉丝点击