Swift 3中的通知上下文

时间:2017-06-15 18:08:29

标签: ios swift notifications uilocalnotification nsnotificationcenter

我创建了一个包含3个操作的通知:

 let category = UNNotificationCategory(identifier: categoryID, actions: [firstActionNotification, secondActionNotification, noneActionNotification], intentIdentifiers: [], options: [])

现在,如果用户在iPhone解锁时收到通知,他可以向下滚动并查看操作但是如果通知进入锁定屏幕并且他滚动并且左侧他只能看到Apple默认操作(清除)。我在一个指南上看到要在外观屏幕上显示它,你必须指定一个上下文:

counterCategory.setActions([incrementAction, decrementAction], forContext: UIUserNotificationActionContext.Minimal)

但这种方法在swift 3中无法解决?

0 个答案:

没有答案