我目前正在使用Content Extensions,并具有自己的自定义UI。在此视图中,我有一个按钮,用户可以在其中与视图进行交互。
我唯一找不到的是一种方法,当点击该按钮时,便会关闭通知或打开应用程序,因为当前通知仍保持打开状态,因为我已在内容扩展中添加了以下键Info.plist UNNotificationExtensionUserInteractionEnabled
。
仅在下面显示一个示例是我在通知扩展中的操作。
- (IBAction)testCustomDismissDidTouch:(id)sender {
// How would I control the notification from here? I.e. Open the app or Dismiss the notification.
}