Schedule UILocalNotification from watch app

I would like to be able to schedule a UILocalNotification from my watchOS 2 app. In iOS, I would do this using UIApplication.sharedApplication.scheduleLocalNotification but I cannot find an equivalent that is accessible from the InterfaceController in my watch app.


Any clues?

Based on the answer from @tom_witkin here it sounds like the answer is "no."

Local notifications must be sceduled from the iOS app as extensions can not access the UIApplication object. Use the WatchConnectivity framework to message your iOS app and have it setup the notification.

Local and remote notifications are budgeted as far as I can tell from the WatchConnectivity Framework Session.

Schedule UILocalNotification from watch app
 
 
Q