2

我已经阅读了许多通知帖子,但不知何故我在某个地方出错了,所以这就是我发布这个问题的原因。我想在我的应用程序中每天早上 9 点收到通知。我在上午 9 点正确收到它,没有任何问题,但困难在于我在凌晨 2 点也收到相同的通知。我尝试使用以下代码。谁能告诉我哪里出错了。还是ios6的问题。任何形式的帮助将不胜感激。谢谢你。

    NSString *day =@"9:00 AM";
    NSDateFormatter *dateFormat = [[[NSDateFormatter alloc] init]autorelease];
    [dateFormat setDateFormat:@"hh:mm a"];
    //NSTimeZone *gmt = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
    //[dateFormat setTimeZone:gmt];
    NSDate *today=[dateFormat dateFromString:day];
    NSLog(@"string %@ & date %@",day,today);
    Class cls = NSClassFromString(@"UILocalNotification");
    if (cls != nil)
    {
        // delObj.QCouter=delObj.QCouter+1;

        //[[UIApplication sharedApplication] cancelAllLocalNotifications];
        notif = [[cls alloc] init];
        notif.fireDate =today;
        notif.timeZone = [NSTimeZone systemTimeZone];
         NSLog(@"timeZone %@ ",[NSTimeZone systemTimeZone]);
        notif.alertBody = @"You have a new letter ";
        notif.alertAction = NSLocalizedString(@"View", nil);;
        notif.soundName = @"Ding3.wav";
        notif.applicationIconBadgeNumber = 1;
        notif.repeatInterval = NSDayCalendarUnit;
        [[NSUserDefaults standardUserDefaults] setObject:@"1" forKey:@"Status"];
        NSDictionary *userDict = [NSDictionary dictionaryWithObject:@"You have a notifiaction"
                                                                       forKey:kRemindMeNotificationDataKey];
        notif.userInfo = userDict;
        // NSLog(@"userInfo %@",notif.userInfo);
        [[UIApplication sharedApplication] scheduleLocalNotification:notif];
        [notif release];
        [[NSUserDefaults standardUserDefaults] setObject:@"CurrentDay" forKey:@"DayChange"];
       }
4

2 回答 2

1

模拟器还是真机?

模拟器有一个已知错误,它会生成单个通知的两次“触发”。如果发生这种情况,请在物理设备上尝试,看看是否会发生相同的行为。这很烦人,但不是您的应用程序的实际问题。(假设它是模拟器,当然!)

看到这个问题:iOS – UILocalNotification 为同一个通知触发了两次

基于“不在模拟器中”进行编辑:

在您安排通知后尝试添加对此的调用,并查看您的代码的其他部分是否滑入您不知道的另一个计划项目中:

- (void) _debug_logExistingToConsole
{
    if (LOG) NSLog(@"Notifications set is now: \n");
    UIApplication *Ap = [UIApplication sharedApplication];
    NSArray* arr = [Ap scheduledLocalNotifications];
    if (LOG) NSLog(@"%@", arr);
}
于 2013-03-07T10:30:03.760 回答
1

嗨尝试以下代码: -

    [[UIApplication sharedApplication] cancelAllLocalNotifications];
    NSDate *date = [NSDate date];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier: NSGregorianCalendar];
    NSDateComponents *components = [gregorian components: NSUIntegerMax fromDate: date];
    [components setHour: 9];
    [components setMinute: 0];
    [components setSecond: 0];

    NSDate *today = [gregorian dateFromComponents: components];
    [gregorian release];

    Class cls = NSClassFromString(@"UILocalNotification");
    if (cls != nil)
    {
        notif = [[cls alloc] init];
        notif.fireDate =today;
        notif.alertBody = @"You have a new letter ";
        notif.alertAction = NSLocalizedString(@"View", nil);;
        notif.soundName = @"Ding3.wav";
        notif.applicationIconBadgeNumber = 1;
        notif.repeatInterval = NSDayCalendarUnit;
        [[NSUserDefaults standardUserDefaults] setObject:@"1" forKey:@"Status"];
        NSDictionary *userDict = [NSDictionary dictionaryWithObject:@"You have a notifiaction"
                                                                       forKey:kRemindMeNotificationDataKey];
        notif.userInfo = userDict;
        // NSLog(@"userInfo %@",notif.userInfo);
        [[UIApplication sharedApplication] scheduleLocalNotification:notif];
        [notif release];
        [[NSUserDefaults standardUserDefaults] setObject:@"CurrentDay" forKey:@"DayChange"];
       }
于 2013-03-13T07:03:58.833 回答