Если вам не нужен звук, не отправляйте sound
параметр в полезной нагрузке.
{
"aps" : {
"alert" : "You got your emails.",
"badge" : 1
},
"acme1" : "test"
}
, также вы можете удалить .alert
и .sound
из willPresent..
метода pu sh в appdelegate.swift
файле
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void)
{
completionHandler([.badge]) //remove .sound, .alert
}