如何在 iOS 交互式通知中添加文本字段
Posted
技术标签:
【中文标题】如何在 iOS 交互式通知中添加文本字段【英文标题】:how to add textfield in iOS interactive notification 【发布时间】:2015-11-04 08:38:30 【问题描述】:我想像 imessage 一样开发交互式通知。我阅读了文档,并尝试将多个 UIMutableUserNotificationAction 添加到 UIMutableUserNotificationCategory 并显示它。我想像 iMessage 一样显示文本字段。这是我的问题
UIMutableUserNotificationCategory *notificationCategory = [[UIMutableUserNotificationCategory alloc] init];
notificationCategory.identifier = @"Email";
[notificationCategory setActions:@[notificationAction1,notificationAction2,notificationAction3] forContext:UIUserNotificationActionContextDefault];
[notificationCategory setActions:@[notificationAction1,notificationAction2] forContext:UIUserNotificationActionContextMinimal];
请帮忙
【问题讨论】:
重复问答:***.com/questions/25841227/… 感谢@Flipper。像魅力一样工作。 【参考方案1】:let replyAction = UIMutableUserNotificationAction()
replyAction.identifier = "REPLY_ACTION"
replyAction.title = "Reply"
replyAction.activationMode = UIUserNotificationActivationMode.Background
replyAction.authenticationRequired = false
replyAction.destructive = false
//Set behaviour to .TextInput
replyAction.behavior = .TextInput
【讨论】:
以上是关于如何在 iOS 交互式通知中添加文本字段的主要内容,如果未能解决你的问题,请参考以下文章