cómo configurar notificaciones locales por cada dos semanas

¿Cómo activar la notificación local cada dos semanas?

Lo que hice fue:

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];

Respuestas a la pregunta(1)

Su respuesta a la pregunta