gpt4 book ai didi

ios - ios 8 解析推送中没有声音

转载 作者:可可西里 更新时间:2023-11-01 04:38:36 26 4
gpt4 key购买 nike

<分区>

这很奇怪,在更新我的应用程序以支持通过 Parse 发送的 iOS 8 推送通知(使用 Parse 仪表板)后,推送通知不会发出任何声音。

我在 Stackoverflow 上发现了这个重复项,但发布的答案对我不起作用:No sound in Parse push notification for ios8

  • 我已经检查了通知中心,消息和声音已启用。
  • 创建了一个新的干净的应用程序
  • 检查其他推送消息是否在应用程序上发出声音
  • 使用 Parse rest api 并将声音设置为默认值。

我试过的都没有用。

使用解析代码更新了我的应用:

// Register for Push Notitications, if running iOS 8
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
UIUserNotificationType userNotificationTypes = (UIUserNotificationTypeAlert |
UIUserNotificationTypeBadge |
UIUserNotificationTypeSound);
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:userNotificationTypes
categories:nil];
[application registerUserNotificationSettings:settings];
[application registerForRemoteNotifications];

} else {
// Register for Push Notifications before iOS 8
[application registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge |
UIRemoteNotificationTypeAlert |
UIRemoteNotificationTypeSound)];
}

编辑:我在 Facebook 开发者上发现了一个现有的错误报告:https://developers.facebook.com/bugs/719233564823090/

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