IOS 中的 GCM 通知未显示在状态栏上

GCM Notification in IOS Not displayed on status Bar

我已经实施了 Google link https://developers.google.com/cloud-messaging/ios/client 中定义的所有步骤,并且我的应用程序会在我们打开应用程序时收到通知。但是这个通知没有显示在状态栏中。我使用了以下有效载荷。请建议某人。

    $msg['aps'] = array
    (
     'alert'       => $pushmessage,
     'sound'         => 'default',

     );

尝试添加徽章。

    $msg['aps'] = array
    (
     'alert'       => $pushmessage,
     'badge'       => '1',
     'sound'         => 'default',

     );

当您的应用程序 运行 时,设备不会显示传入的通知。您必须处理它(didreciveremotenotification)并向用户或其他任何内容显示任何类型的警报。 也许您想使用 OTNotification or RKDropdownAlert

这样的组件

当您的应用程序不是 运行 时,如果您的设备没有显示通知,请检查 进行测试。

希望对你有帮助