从Today扩展中调度本地通知

时间:2014-11-01 13:09:16

标签: ios cocoa-touch notifications uilocalnotification ios8-today-widget

我正在创建一个包含Today Extension的应用。今天的扩展名显示了一个计时器列表,如果用户选择其中一个计时器,我想为该计时器创建和安排本地通知。

我的问题是使用以下代码行完成通知的安排:

UIApplication.sharedApplication().scheduleLocalNotification(notification)

非常遗憾地依赖于无法通过扩展程序访问的UIApplication.sharedApplication()

所以我的问题是:如何在Today分机中安排本地通知?

有趣的是,我可以使用我的应用程序和我的扩展程序之间共享的代码创建一个框架,在该框架中我可以调用:

func schedule() {
    // ...
    let settings = UIUserNotificationSettings(forTypes: .Sound | .Alert, categories: nil)
    UIApplication.sharedApplication().registerUserNotificationSettings(settings)
    // ...
    UIApplication.sharedApplication().scheduleLocalNotification(notification)
    // ...
}

如果我从我的扩展程序导入该框架并调用schedule(),我会收到此输出:

Failed to inherit CoreMedia permissions from 13636: (null)

Attempting to schedule a local notification <UIConcreteLocalNotification: 0x7feaf3657a00>{fire date = Saturday, November 1, 2014 at 1:01:48 PM Western European Standard Time, time zone = (null), repeat interval = 0, repeat count = UILocalNotificationInfiniteRepeatCount, next fire date = Saturday, November 1, 2014 at 1:01:48 PM Western European Standard Time, user info = (null)} with an alert but haven't received permission from the user to display alerts

Attempting to schedule a local notification <UIConcreteLocalNotification: 0x7feaf3657a00>{fire date = Saturday, November 1, 2014 at 1:01:48 PM Western European Standard Time, time zone = (null), repeat interval = 0, repeat count = UILocalNotificationInfiniteRepeatCount, next fire date = Saturday, November 1, 2014 at 1:01:48 PM Western European Standard Time, user info = (null)} with a sound but haven't received permission from the user to play sounds

因此,在扩展程序中运行的模块可以访问UIApplication.sharedApplication(),因为此代码实际上会尝试安排通知,但是系统没有为要求显示警报权限的扩展做好准备,因此它失败了(&# 39;无论如何它似乎是什么。)

我该如何解决这个问题?

此外,我知道我可以使用网址启动我的应用,并按正常方式安排来自应用的通知,但用户是友好的。拥有今天扩展的整个目的是使用户不必打开应用程序来安排通知。交互必须快速,简单和透明,并且将用户从应用程序中移除,只需运行几行代码然后完成它就不是我想要做的事情。

3 个答案:

答案 0 :(得分:7)

如果有人提出这个问题,现在可以在iOS 10中实现,它是新的UserNotifications框架。要从您的应用扩展程序安排本地通知,您只需在扩展程序中调用此行代码:

UNUserNotificationCenter.current().add(<#UNNotificationRequest#>)

答案 1 :(得分:5)

我认为如果你这样做,这可能会成为可能:

  1. 每当您想安排本地通知时,请让今天的分机创建通知并将其信息写入共享容器中的文件。

  2. (您需要一台服务器)从今天的分机上联系您的服务器,要求您的服务器发送一个简单的推送通知(内容可用:1),然后唤醒您的主应用程序。

  3. 当您的应用被远程通知唤醒时,从共享容器中读取从步骤1创建的文件,安排本地通知然后重新进入休眠状态。

答案 2 :(得分:3)

这极不可能奏效。应用扩展程序不允许访问sharedApplication。可以防止编译器注意到你这样做的事实并没有改变这一点。如果您在调试器中尝试此操作,我猜测sharedApplication实际上返回nil,这就是代码失败的原因。

如果可以找到某种方法使其发挥作用,请不要依赖它。 Apple几乎肯定会将其视为一个错误并在未来版本中修复它,在没有警告的情况下破坏您的扩展。