我想知道是否可以从手表创建本地通知的时间表,而无需通过WCSession与配对的iOS手机通信。如果是这样,如何安排通知?我创建通知但后来不知道如何在设备上安排它/自动呈现它?
UILocalNotification *theNotification = [[UILocalNotification alloc] init];
[theNotification setAlertBody:@"This is a test"];
[theNotification setAlertTitle:@"Test"];
...???
由于