iOS10可以实现 当App处于前台时 展示通知,实现该方法:(若不想展示,则不实现即可)
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler
前台展示通知,可添加三种提醒(可自行选择几种实现,不写alert则不会有横幅提醒)
completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert);
若不想显示通知,则不实现这个方法就行
网友评论