iphone - apns 警报选项(无查看选项)可能吗?
苹果官方文档中写道
警报
字符串或 字典
如果包含此属性,iOS 将显示标准警报。您可以指定一个字符串作为警报的值,或指定一个字典作为其值。如果指定字符串,它将成为带有两个按钮的警报的消息文本:“关闭”和“查看”。如果用户点击“查看”,则会启动该应用程序。 或者,您可以指定一个字典作为警报的值。该字典的键说明见表3-2。
但我想知道是否有任何选项可以添加到代码中以使推送仅显示“关闭”按钮。
我现在拥有的例子: @"{\"aps\":{\"alert\":\"更新操作系统\"},\"acme1\":\"updateos\",\"acme2\":42}";
In the official Apple document it says
alert
string or
dictionaryIf this property is included, iOS displays a standard alert. You may specify a string as the value of alert or a dictionary as its value. If you specify a string, it becomes the message text of an alert with two buttons: Close and View. If the user taps View, the application is launched.
Alternatively, you can specify a dictionary as the value of alert. See Table 3-2 for descriptions of the keys of this dictionary.
But I wonder if there's any option that I can add to the code to make the push only show "close" button.
Ex of what I have now:@"{\"aps\":{\"alert\":\"Update OS\"},\"acme1\":\"updateos\",\"acme2\":42}";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用字典。看看同一页上的表 3-2,对于关键的
action-loc-key
,它说:也许您需要的是单个“确定”按钮。
I think you can use a dictionary. Have a look at Table 3-2 on the same page, for the key
action-loc-key
, it says:The single OK button is perhaps what you need.