0

According to the respective documentation, UIApplicationSignificantTimeChange notification is not available on WatchOS. Is there an equivalent notification or way to be notified about significant time changes (new day mainly) on an Apple Watch app?

spassas
  • 4,778
  • 2
  • 31
  • 39

1 Answers1

1

AFAIK there is no built in equivalent in WatchKit. However, you should be able to create an equivalent using UNCalendarNotificationTrigger and setting the trigger to the next day each time a new notification is delivered.

Dávid Pásztor
  • 51,403
  • 9
  • 85
  • 116
  • Thank you for your answer. Yes, I could indeed do that but I would prefer to avoid the burden of managing an extra notification for something (seemingly) as simple as that. I'll wait a bit in case someone has a more straightforward approach that we've missed. – spassas May 09 '17 at 15:43