gpt4 book ai didi

ios - 在iOS中的推送通知中振动取决于客户端或有效负载

转载 作者:行者123 更新时间:2023-12-01 19:32:33 26 4
gpt4 key购买 nike

以下是我的请求通知代码

if #available(iOS 10, *) {
UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound]){ (granted, error) in }
application.registerForRemoteNotifications()
}

我已要求用户在通知中发出声音,警报和标志权限。
我还浏览了以下有关推送通知振动的链接。

vibrate in push notification

我的问题是当应用程序关闭时由应用程序处理的推送通知振动,或者是导致iPhone振动的有效载荷。

是否可以通过推送通知处理iPhone的振动,例如推送通知的有效载荷中的声音键,还是有其他方法可以控制推送振动?

提前致谢

最佳答案

您实际上可以通过指定声音来控制有效载荷内的振动。如果您指定自己的声音,可能不会振动,但是如果您采用默认声音,则设备会振动!

有效负载示例:

{
"aps" : {
"alert" : "You got your emails.",
"badge" : 9,
"sound" : "bingbong.aiff" // or set this to the default sound
}
}

关于ios - 在iOS中的推送通知中振动取决于客户端或有效负载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61680502/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com