作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下是我的请求通知代码
if #available(iOS 10, *) {
UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound]){ (granted, error) in }
application.registerForRemoteNotifications()
}
最佳答案
您实际上可以通过指定声音来控制有效载荷内的振动。如果您指定自己的声音,可能不会振动,但是如果您采用默认声音,则设备会振动!
有效负载示例:
{
"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/
我是一名优秀的程序员,十分优秀!