Así que, básicamente, intento establecer una aplicación que proporcione notificaciones locales constantemente.¿Cómo puedo crear una UILocalNotification que notifique cada dos minutos?
hasta ahora tengo:
- (void)scheduleNotification {
[reminderText resignFirstResponder];
[[UIApplication sharedApplication] cancelAllLocalNotifications];
Class cls = NSClassFromString(@"UILocalNotification");
if (cls != nil) {
UILocalNotification *notif = [[cls alloc] init];
notif.fireDate = [datePicker date];
notif.timeZone = [NSTimeZone defaultTimeZone];
notif.alertBody = @"Your building is ready!";
notif.alertAction = @"View";
notif.soundName = UILocalNotificationDefaultSoundName;
notif.applicationIconBadgeNumber = 1;
NSInteger index = [scheduleControl selectedSegmentIndex];
switch (index) {
case 1:
notif.repeatInterval = NSMinuteCalendarUnit;
break;
case 2:
notif.repeatInterval = NSMinuteCalendarUnit*2;
break;
default:
notif.repeatInterval = 0;
break;
}
NSDictionary *userDict = [NSDictionary dictionaryWithObject:reminderText.text
forKey:kRemindMeNotificationDataKey];
notif.userInfo = userDict;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
[notif release];
}
}
que estoy tratando de hacerlo para que pueda obtener una notificación cada 2 minutos (cuando me puse el caso 2) y cada 1 minuto (cuando me puse el caso 1) ser notificado. El único problema es ... El * 2 no funciona para que reciba notificaciones cada 2 minutos. ¿Cómo voy a hacerlo para que se notifique cada 2 minutos?