2
    - (void)scheduleNotification :(int) rowNo
{

    [[UIApplication sharedApplication] cancelAllLocalNotifications];

    Class cls = NSClassFromString(@"UILocalNotification");
    if (cls != nil) {

        UILocalNotification *notif = [[cls alloc] init];
        notif.timeZone = [NSTimeZone defaultTimeZone];

        NSString *descriptionBody=[[remedyArray objectAtIndex:rowNo]objectForKey:@"RemedyTxtDic"];

        NSLog(@"%@",descriptionBody);

        notif.alertBody = [NSString stringWithString:descriptionBody];
        notif.alertAction = @"Show me";
        notif.soundName = UILocalNotificationDefaultSoundName;
        notif.applicationIconBadgeNumber = 1;


        NSDictionary *userDict = [NSDictionary dictionaryWithObject:notif.alertBody
                                                             forKey:@"kRemindMeNotificationDataKey"];
        notif.userInfo = userDict;

        [[UIApplication sharedApplication] scheduleLocalNotification:notif];

    }
}

我有一个从 Sqldb 获取的列名频率,其中包含通知应出现在特定单元格的次数。如果频率 = 3 .. 通知应该在上午 8 点、下午 2 点然后 8 点触发 如果频率 = 4 .. 通知应该在上午 8 点、下午 12 点、下午 4 点然后晚上 8 点触发。

有没有办法做到这一点?如果有人可以帮助我,那就太好了

4

1 回答 1

2

不幸的是,您只能为 NSCalendarUnit(日、周、月)类型的 repeatInterval 指定值。因此,我认为,您需要创建多个具有不同 fireDate 的通知,并为它们指定 repeatInterval = NSDayCalendarUnit 例如,

NSDate *currentTime = [NSDate date];
notification1.fireDate = [NSDate dateWithTimeInterval:SOME_INTERVAL sinceDate:currentTime];
notification1.repeatInterval = NSDayCalendarUnit;

notification2.fireDate = [NSDate dateWithTimeInterval:SOME_INTERVAL * 2 sinceDate:currentTime];
notification2.repeatInterval = NSDayCalendarUnit;

用户查看某些通知后 - 您可以取消它们。

更新。

您还可以从不同的组件创建 NSDate,如下所示:

NSDateComponents *components = [[NSDateComponents alloc] init];
[components setWeekday:2]; // Monday
[components setWeekdayOrdinal:1]; // The first Monday in the month
[components setMonth:5]; // May
[components setYear:2013];
NSCalendar *gregorian = [[NSCalendar alloc]
                     initWithCalendarIdentifier:NSGregorianCalendar];
NSDate *date = [gregorian dateFromComponents:components];

您还可以设置小时、分钟、秒、时区和其他参数。

于 2013-01-22T13:35:28.363 回答