0

私はアラームアプリで作業しています。NSLocal 通知を使用してアラームを作成しています。アラームは正常に機能しています。私の問題は、間隔なしで Alatm を繰り返しループする必要があることです。

私のコード:

 UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    [localNotification setFireDate:date];
    localNotification.timeZone = [NSTimeZone defaultTimeZone];
    [localNotification setAlertAction:@"Launch"];
    [localNotification setAlertBody:msg];

    [localNotification setHasAction: YES];
    localNotification.soundName = soundFile;

    localNotification.applicationIconBadgeNumber = 1;
    localNotification.repeatCalendar = [NSCalendar currentCalendar];
    localNotification.repeatInterval = kCFCalendarUnitSecond;
 [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

誰でも私を助けてください。

4

1 に答える 1