您好我使用的是cordova 2.7.0,我需要使用notification.beep() 方法。但我有一个问题,即使手机处于静音模式,我的应用程序也会响起。
有什么建议么?
我用的是iphone 5。
您好我使用的是cordova 2.7.0,我需要使用notification.beep() 方法。但我有一个问题,即使手机处于静音模式,我的应用程序也会响起。
有什么建议么?
我用的是iphone 5。
更新 CDVSound.m 文件中的代码
注意: (void)setVolume 适用于 phonegap 3.4 ,我不确定其他旧版本的功能是否相同。但必须有类似的功能才能设置音量。
在 setVolume 函数中添加以下 2 行代码,这将设置声音的音量与设备上设置的声音相同。
float mVolume=[self getVolumeLevel];
volume = [NSNumber numberWithFloat: mVolume];
完整代码如下
- (void)setVolume:(CDVInvokedUrlCommand*)command
{
NSString* callbackId = command.callbackId;
NSString* mediaId = [command.arguments objectAtIndex:0];
NSNumber* volume = [command.arguments objectAtIndex:1 withDefault:[NSNumber numberWithFloat:1.0]];
//This will set volume of the sound same as sound set on device.
float mVolume=[self getVolumeLevel];
volume = [NSNumber numberWithFloat: mVolume];
if ([self soundCache] != nil) {
CDVAudioFile* audioFile = [[self soundCache] objectForKey:mediaId];
if (audioFile != nil) {
audioFile.volume = volume;
if (audioFile.player) {
audioFile.player.volume = [volume floatValue];
}
[[self soundCache] setObject:audioFile forKey:mediaId];
}
}
}