日次リマインダー(ローカル通知)
毎日定時に「今日の勉強は始めましたか?少しずつ頑張りましょう!」のリマインダーを送る機能。 ローカル通知のみで、サーバー不要。
final class NotificationService {
static let shared: NotificationService
func requestAuthorization() async throws
func setEnabled(_ enabled: Bool, hour: Int, minute: Int)
func scheduleDailyReminder(hour: Int, minute: Int)
}
"dailyReminder"
requestAuthorization([.alert, .sound, .badge])UNCalendarNotificationTrigger を作成removePendingNotificationRequests(withIdentifiers:)| バージョン | 日付 | 変更内容 |
|---|---|---|
| 1.0 | 2026-05-09 | 初版作成 |