突然UIUserNotificationActionResponseTypedTextKey不可用

时间:2015-10-31 20:24:33

标签: ios ios9 ios9.1

我不明白这一点。突然之间,我无法使用iOS 9.0中引入的UIUserNotificationActionResponseTypedTextKey标识符来访问通知中的文本输入消息。 Xcode 7.1说:" UIUserNotificationActionResponseTypedTextKey不可用"。

但是我可以在UIUserNotificationeSettings.h中看到这个值。

在Watchos2.0中我有这个值。

任何想法?

enter image description here

1 个答案:

答案 0 :(得分:1)

我在 Xcode 7.2 的发布版本中看到了同样的东西。我没有使用密钥UIUserNotificationActionResponseTypedTextKey,而是使用字符串版本“UIUserNotificationActionResponseTypedTextKey”。

所以对我来说这就是诀窍:

if let response = responseInfo["UIUserNotificationActionResponseTypedTextKey"] as? String {
     // Your code here
}