3
アプリがフォアグラウンドにあるときにプッシュ通知のバナーを表示したい。 宣言されていないタイプの「UNUserNotificationCenter」の使用
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void)
{
completionHandler([.alert, .badge, .sound])
}
が、このエラーが宣言されていないタイプの使用を受けた「UNUserNotificationCenter」
あなたは 'import UserNotifications'を追加しましたか? –
インポートできません –
インポートエラーが解決されましたが、通知はまだ届きません –