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截圖:
,並從iOS的8:
我如何能實現文字輸入iOS 8也是。
我認爲這不是,但同樣的事情正在消息應用程序。但它可能只是私人API。你不覺得? –