まだどこにもないアプリを作る

アプリ開発でつまづいたところなどを中心に記事にして行きます。

swift ローカル通知 全削除

今あるローカル通知を全削除⬇︎

let unc = UNUserNotificationCenter.current()

                unc.removeAllPendingNotificationRequests()




ID指定して削除したい場合はこっち⬇︎

unc.removePendingNotificationRequests(withIdentifiers: ["id"])



ローカル通知って一度に64件くらいしか登録できないんですよねー