在performFetchWithCompletionHandler期间,我们将取消在以前运行应用程序期间设置的本地通知,并设置更新的通知。
NSArray *notifications = [[UIApplication sharedApplication] scheduledLocalNotifications];
for (UILocalNotification *notif in notifications) {
if (/*some condition is met re the notif*/) {
[[UIApplication shar
我正在尝试实现一个解决方案,从苹果手表应用程序中打开我的iPhone应用程序。
下面是我使用通知进行此操作的用例:
Watch displays an available deal with a CTA button to see details on Phone
--------------------------
New rates options published!
check details on phone
<Button>
---------------------------
当用户选择手表上的按钮时,用户将在配对电话“检查您的新费率选项”上获得本地通知
在