我正在 ios 11 的 Objective c 代码中实现静默通知。通过添加此方法使用 FCM 通知。 什么是静默推送通知?设备什么时候收到?
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))handler
{
//Success
handler(UIBackgroundFetchResultNewData);
}
和paylod是:
{
"aps" = {
"content-available" : 1,
"sound" : ""
};
// You can add custom key-value pair here...
}
didReceiveRemoteNotification
收到通知时调用方法但我的问题是为什么收到无提示通知时横幅可见。如何限制通知横幅。