9

毎分ランダムなローカル通知 (テキストとサウンド) が必要です。以下のコードを使用しています。

self.randomIndex_text  = arc4random() % [self.array_motivation count];
self.randomIndex_alarm = arc4random() % [self.array_alarm count];
NSLog(@"text %d, alarm %d",self.randomIndex_text, self.randomIndex_alarm);

このコードは完全に機能します

- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif
{
notif.soundName = [NSString stringWithFormat:@"%@.mp3", [self.array_alarm objectAtIndex:self.randomIndex_alarm]];
    [self _showAlert:[NSString stringWithFormat:@"%@",[self.array_motivation objectAtIndex:self.randomIndex_text]] withTitle:@"Daily Achiever"];
}

上記のコードからアラートを表示し、アラートの OK で次のメソッド呼び出しを表示します。

-(void)insert:(NSDate *)fire
{
    self.localNotification = [[UILocalNotification alloc] init];

    if (self.localNotification == nil)
        return;

    self.randomIndex_text  = arc4random() % [self.array_motivation count];
    self.randomIndex_alarm = arc4random() % [self.array_alarm count];
    NSLog(@"text %d, alarm %d",self.randomIndex_text, self.randomIndex_alarm);

    self.localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:refTimeIntrval];
    self.localNotification.timeZone = [NSTimeZone defaultTimeZone];
    self.localNotification.alertBody = [NSString stringWithFormat:@"%@",[self.array_motivation objectAtIndex:self.randomIndex_text]];
    self.localNotification.soundName = [NSString stringWithFormat:@"%@.mp3",[self.array_alarm objectAtIndex:self.randomIndex_alarm]];
    self.localNotification.alertAction = @"View";
    self.localNotification.applicationIconBadgeNumber = [[UIApplication sharedApplication] applicationIconBadgeNumber]+1;
    self.localNotification.repeatInterval=NSMinuteCalendarUnit;

    NSLog(@"alertBody %@,soundName %@", self.localNotification.alertBody, self.localNotification.soundName);
    [[UIApplication sharedApplication] scheduleLocalNotification:self.localNotification];
}

しかし、バックグラウンドでは動作しません。これを上記のランダムメソッドに入れただけです

- (void)applicationDidEnterBackground:(UIApplication *)application
{
NSAssert(self->bgTask == UIBackgroundTaskInvalid, nil);
    bgTask = [application beginBackgroundTaskWithExpirationHandler: ^{
        dispatch_async(dispatch_get_main_queue(), ^{
            [application endBackgroundTask:self->bgTask];
            self->bgTask = UIBackgroundTaskInvalid;
        });
    }];

    dispatch_async(dispatch_get_main_queue(), ^{
        while ([application backgroundTimeRemaining] > 1.0)
        {
            UILocalNotification *localNotif = [[UILocalNotification alloc] init];
            if (localNotif)
            {
                self.randomIndex_text  = arc4random() % [self.array_motivation count];
                self.randomIndex_alarm = arc4random() % [self.array_alarm count];
                NSLog(@"tempmethod text %d, alarm %d",self.randomIndex_text, self.randomIndex_alarm);

                localNotif.fireDate = [[NSDate date] dateByAddingTimeInterval:refTimeIntrval];
                localNotif.alertBody = [NSString stringWithFormat:@"%@",[self.array_motivation objectAtIndex:self.randomIndex_text]];
                localNotif.soundName =[NSString stringWithFormat:@"%@.mp3",[self.array_alarm objectAtIndex:self.randomIndex_alarm]];
                localNotif.alertAction = NSLocalizedString(@"Read Msg", nil);
                localNotif.applicationIconBadgeNumber = 1;
                [localNotif setRepeatInterval:NSMinuteCalendarUnit];
                [application presentLocalNotificationNow:localNotif];

                NSLog(@"sound: %@, alertAction: %@, alerBody: %@, ref: %f, str_time: %@",localNotif.soundName, localNotif.alertAction, localNotif.alertBody, refTimeIntrval, str_Time);

                [self performSelector:@selector(bgmethodd) withObject:nil afterDelay:refTimeIntrval];
                break;
            }
        }
        [application endBackgroundTask:self->bgTask];
        self->bgTask = UIBackgroundTaskInvalid;
    });
    NSLog(@"smh: %d,%d,%d",self.seconds, self.minutes, self.hours);
    }
}

その呼び出しを一度だけデバッグするときに気づいたもう 1 つのことapplicationDidEnterBackground(つまり、アプリケーションがバックグラウンドで移動するとき)。その後、アプリケーションが再び開くまでメソッド呼び出しはありませんが、それでも通知テキストと音声が連続して表示されます。しかし、このテキストとサウンドはランダムではありません。

バックグラウンドでメソッドが呼び出されない場合に、この通知テキストとサウンドがどこから来るかについてのアイデアを提案し、知識を共有してください。また、通知をバックグラウンドでランダムにすることは可能ですか。前もって感謝します。

4

1 に答える 1