gpt4 book ai didi

iphone - 当应用程序处于后台或事件状态时的 UILocalNotification

转载 作者:行者123 更新时间:2023-11-29 03:57:25 25 4
gpt4 key购买 nike

在我的应用程序中,我必须以自定义时间间隔发出通知(文本和声音)。即 1 分钟、2 分钟、3 分钟到 59 分钟,我的应用程序处于后台或应用程序处于事件状态。我为此使用本地通知。

这里有两个问题:

  1. 当我从日期时间选择器中选择任何时间时,我仅在 1 分钟内就收到了通知。对于例如。当我选择 5 分钟并启动计时器时,通知每 1 分钟触发一次,而不是 5 分钟内触发一次。我如何在自定义时间间隔内收到通知以及如何重复它直到我停止计时器开关。

  2. 我在后台收到文本和声音,但当我的应用程序处于事件状态时,我只收到文本而不是声音。那么当我的应用程序处于事件状态时如何播放声音。

请给我一些建议。提前致谢。

最佳答案

  1. 无法自定义时间间隔
    您无法为 UILocalNotification 设置自定义时间间隔,只能使用 NSCalendarUnits 作为重复间隔,例如 NSMinuteCalendarUnit

      notification.repeatInterval = NSMinuteCalendarUnit
  2. 如果您的应用程序位于前台(事件),则需要提供自定义警报 View 和声音。系统只会调用applicationDidReceiveNotification。为此,您可以使用 UIAlertViewAVAudioPlayer

    -(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
    {

    UIApplicationState state = [[UIApplication sharedApplication] applicationState];
    // checking the state of the application
    if (state == UIApplicationStateActive)
    {
    // Application is running in the foreground
    // Showing alert
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:alertTitle message:alertMessage delegate:self cancelButtonTitle:cancelButtonTitle otherButtonTitles:otherButtonTitle, nil];
    [alert show];
    [alert release];

    //Playing sound
    NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", [[NSBundle mainBundle] resourcePath],notification.soundName]];

    AVAudioPlayer *newAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:NULL];
    self.audioPlayer = newAudioPlayer;
    self.audioPlayer.numberOfLoops = -1;
    [self.audioPlayer play];
    [newAudioPlayer release];
    }
    }

    - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
    {
    [self.audioPlayer stop];
    }

关于iphone - 当应用程序处于后台或事件状态时的 UILocalNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16333676/

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