11

我正在制作一个包含 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()因为此代码实际上试图安排通知,但系统没有准备好扩展程序请求显示警报的权限,因此它失败了(无论如何,这就是它的样子)。

我该如何解决这个问题?

另外,我知道我可以使用 url 启动我的应用程序并正常安排来自应用程序的通知,但这不是用户友好的。拥有今天扩展的全部目的是让用户不必打开应用程序来安排通知。交互必须快速、简单和透明,并且将用户从他们所在的应用程序中拉出来只是为了运行几行代码然后完成它不是我想做的事情。

4

3 回答 3

7

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

UNUserNotificationCenter.current().add(<#UNNotificationRequest#>)
于 2017-10-20T13:34:18.643 回答
5

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

  1. 每当您想安排本地通知时,请让您的 Today 扩展程序创建通知并将其信息写入共享容器中的文件。

  2. (您需要一个服务器)通过您的今日扩展联系您的服务器,要求您的服务器发送一个静默推送通知(内容可用:1),然后唤醒您的主应用程序。

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

于 2014-12-25T09:58:56.910 回答
3

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

如果你找到一些方法让它发挥作用,不要依赖它。苹果几乎肯定会认为这是一个错误并在未来的版本中修复它,在没有警告的情况下破坏你的扩展。

于 2014-11-04T17:56:35.820 回答