gpt4 book ai didi

ios - 本地通知声音没有播放?

转载 作者:行者123 更新时间:2023-12-01 17:25:44 25 4
gpt4 key购买 nike

我的本地通知存在此问题,它们没有播放声音。我测试了默认游戏和自定义游戏,这显然是我想要玩的游戏,但是什么也没有!我看了看,很多人都面临这个问题,但是他们的解决方案都不适合我。

UILocalNotification *local

- (IBAction)Dateaction:(id)sender {

local = [[UILocalNotification alloc]init];
local.timeZone = [NSTimeZone defaultTimeZone];
local.alertBody = [NSString stringWithFormat:@"%@ Recuerda que tienes que: %@", [[NSUserDefaults standardUserDefaults] objectForKey:@"user"], [[NSUserDefaults standardUserDefaults] objectForKey:@"selected"]];
local.fireDate = [self.DatePicker date];
/* if ([[self.userdefaults objectForKey:@"sound"]isEqualToString:@"sound1"]) {
local.soundName = @"sound1.caf";
}else if([[self.userdefaults objectForKey:@"sound"]isEqualToString:@"sound2"]){
local.soundName = @"sound2.caf";
}else if([[self.userdefaults objectForKey:@"sound"]isEqualToString:@"sound1"]){
local.soundName = @"sound3.caf";
}else{
local.soundName = @"sound1.caf";
}*/
local.soundName = UILocalNotificationDefaultSoundName;


}

- (IBAction)switchChanged:(id)sender {
if(self.NotSwith.isOn == YES){
[[UIApplication sharedApplication] scheduleLocalNotification:local];


}
}

最佳答案

可能是一个相对简单的解决方案:您可以测试它是否可以在Simulator中运行吗?如果它在模拟器中而不是在设备中可用,我建议确保静音开关未打开(昨天花了4个小时弄清楚了这一点)。

关于ios - 本地通知声音没有播放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22446332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com