구현 내용 Timer 객체가 설정한 시간마다 UserNotifications를 이용해 사용자에게 푸시알림을 보여주는 것 개발 내용 🛠️ 알림 등록 및 제거 import UserNotifications func enrollNotification(_ date: Date) { let calendar = Calendar.current let dateComponents = calendar.dateComponents([.hour, .minute], from: date) let content = UNMutableNotificationContent() content.title = "알림" content.body = "Daily Timer" content.sound = UNNotificationSound.init(nam..