在該方法中設置bash
- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler{
completionHandler(UNNotificationPresentationOptionSound);
// 須要執行這個方法,選擇是否提醒用戶,有Badge、Sound、Alert三種類型能夠設置, 不設置alert當APP在前臺時就沒有提示
}
複製代碼