我不明白这一点。突然之间,我无法使用iOS 9.0中引入的UIUserNotificationActionResponseTypedTextKey标识符来访问通知中的文本输入消息。 Xcode 7.1说:" UIUserNotificationActionResponseTypedTextKey不可用"。
但是我可以在UIUserNotificationeSettings.h中看到这个值。
在Watchos2.0中我有这个值。
任何想法?
答案 0 :(得分:1)
我在 Xcode 7.2 的发布版本中看到了同样的东西。我没有使用密钥UIUserNotificationActionResponseTypedTextKey
,而是使用字符串版本“UIUserNotificationActionResponseTypedTextKey
”。
所以对我来说这就是诀窍:
if let response = responseInfo["UIUserNotificationActionResponseTypedTextKey"] as? String {
// Your code here
}