仅停止Firebase推送通知振动

时间:2018-08-09 16:24:30

标签: ios iphone firebase push-notification

在目标c中,app处于地面时,如何停止Firebase推送通知振动?

1 个答案:

答案 0 :(得分:0)

您可以尝试

-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler{
  if([[UIApplication sharedApplication] applicationState] == UIApplicationStateActive ) {
        completionHandler(UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
   else {
        completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
   }

}