lihao312 发表于 2013-1-30 20:23:58

IOS基础知识记录二

1.提醒用户信息, 铃声提醒或者震动提示
SystemSoundID soundID;    NSString *url = [ pathForResource: @"sound" ofType: @"wav"];      AudioServicesCreateSystemSoundID((__bridge CFURLRef), &soundID);    AudioServicesPlaySystemSound(soundID);   //AudioServicesPlayAlertSound(soundID)

AudioServicesPlaySystemSound如果系统静音, 则用户提示就没有什么效果
AudioServicesPlayAlertSound如果静音会震动,否则声音提示
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);单一的震动
页: [1]
查看完整版本: IOS基础知识记录二