2015-09-26 74 views
1

我註冊UIMutableUserNotificationAction如何在iOS 8中實現iOS 9的UIUserNotificationActionBehavior.TextInput?

let responseTextAction = UIMutableUserNotificationAction() 
responseTextAction.identifier = "text" 
responseTextAction.title = "New text" 
if #available(iOS 9.0, *) { 
    responseTextAction.behavior = UIUserNotificationActionBehavior.TextInput 
} else { 
    // Fallback on earlier versions 
} 

這是來自iOS的9截圖:

enter image description here

,並從iOS的8:

enter image description here

我如何能實現文字輸入iOS 8也是。

+0

我認爲這不是,但同樣的事情正在消息應用程序。但它可能只是私人API。你不覺得? –

回答

1

通知的文本輸入僅適用於iOS 9+。如您所見,以前的版本將默認爲標準通知。