como definir a notificação local a cada duas semanas

Como acionar a notificação local a cada duas semanas?

O que eu fiz foi:

UILocalNotification *localNotification = UILocalNotification.new;
localNotification.repeatInterval = 14;
localNotification.fireDate = [NSDate dateWithTimeInterval:10 sinceDate:notificationDate];
localNotification.alertBody = notificationMessage;
localNotification.alertAction = @"Open";
localNotification.category = @"default_category";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

questionAnswers(1)

yourAnswerToTheQuestion