lunes, 25 de enero de 2016

iOS: LocalNotification

NSDate* date = [[NSDate date] dateByAddingTimeInterval:10];
    
    UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    localNotification.fireDate = date;
    localNotification.alertBody = [NSString stringWithFormat:@"Alert Fired at %@", date];
    localNotification.soundName = UILocalNotificationDefaultSoundName;
    localNotification.applicationIconBadgeNumber = 1;

    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

No hay comentarios:

Publicar un comentario