使用未解析的标识符:"UNMutableNotificationContent"

Use of unresolved identifier: "UNMutableNotificationContent"

我有以下代码:

func sendLucidNotification() {
    let content = UNMutableNotificationContent()
    content.title = "10 Second Notification Demo"
    content.subtitle = "From MakeAppPie.com"
    content.body = "Notification after 10 seconds - Your pizza is Ready!!"
    content.categoryIdentifier = "message"

}

当我调用 UNMutableNotificationContent 或任何 "UNMutableNotification" 变体时,我收到以下错误:

Use of unresolved identifier: "UNMutableNotificationContent"

我使用的是 Xcode 8.0,但是当我尝试自动完成时它也无法识别。有任何想法吗 ?谢谢!

您很可能需要在编写此代码的地方添加 import notification_framework 语句,例如

import notification_framework_name

还要确保该框架可用于您的目标构建。

更新:在您的情况下,导入语句将是:

import UserNotifications