在 WatchKit 模拟器的通知中添加多个按钮

Posted

技术标签:

【中文标题】在 WatchKit 模拟器的通知中添加多个按钮【英文标题】:Add multiple buttons to Notifications on WatchKit Simulator 【发布时间】:2015-01-08 08:00:52 【问题描述】:

我正在尝试将Second Button 添加到 watchapp 上的动态通知屏幕。 但模拟器只显示第一个按钮。


"aps": 
    "alert": "Test message",
    "title": "Optional title",
    "category": "myCategory"
,

"WatchKit Simulator Actions": [
                                   
                                       "title": "First Button",
                                       "identifier": "firstButtonAction"
                                   
                                   
                                       "identifier" : "Second Button",
                                       "title" : "secondButtonAction"
                                   ,
                               ]


【问题讨论】:

【参考方案1】:

对于第二个项目,您将您的标题标记为您的标识符,反之亦然。此外,您在“WatchKit Simulator Actions”数组中的两个对象之间缺少逗号。请参阅json.org的语法

"WatchKit Simulator Actions": [
                               
                                   "title": "First Button",
                                   "identifier": "firstButtonAction"
                               ,
                               
                                   "title": "Second Button",
                                   "identifier": "secondButtonAction"
                               ,
                           ]


【讨论】:

以上是关于在 WatchKit 模拟器的通知中添加多个按钮的主要内容,如果未能解决你的问题,请参考以下文章

WatchKit 通知:38 毫米 Apple Watch 上的视图被截断?

创建后如何将通知场景添加到 WatchKit 目标?

Apple Watch - 如果我想自定义远程通知的发送方式,是不是需要添加 watchkit 扩展程序?

在 WatchKit 应用中播放背景声音

“WatchKit Simulator Actions”不适用于实际的 Apple Watch 设备

WatchKit:在通知短外观和长外观中更改应用名称?