将UILocalNotification与Watch同步

时间:2017-05-24 06:00:34

标签: objective-c xcode uilocalnotification apple-watch

在我的iPhone应用程序上,我创建了UILocalNotification。我想知道如何在Apple Watch上同步UILocalNotification。这意味着当iPhone上显示通知时会显示通知。

这是我的UILocalNotification(这个通知出现在91个secondes中,我想出现在手机和手表中):

        UILocalNotification *verif_exterieur_notification = [[UILocalNotification alloc]init];
    verif_exterieur_notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:91];
    verif_exterieur_notification.alertTitle = @"Vérifications extérieures:";
    verif_exterieur_notification.alertBody = @"Assurez vous d'avoir bien vérifié(e) l'éxterieur de votre avion avant de vous installer !";
    verif_exterieur_notification.timeZone = [NSTimeZone defaultTimeZone];
    verif_exterieur_notification.soundName = UILocalNotificationDefaultSoundName;

    [[UIApplication sharedApplication ]scheduleLocalNotification:verif_exterieur_notification];

1 个答案:

答案 0 :(得分:0)

您无需执行任何操作即可实现此目的。系统会自动决定它将显示通知的设备。 如果您的iPhone已锁定并且您的手表在手腕上,则应自动在手表上收到通知。另外,请确保在iPhone上的Watch应用中为您的应用启用了通知,并确保您的Watch未处于“请勿打扰”模式。