저는 신속하게 새롭고 UISwitch IBAction 내부에서 로컬 알림을 요청하는 여러 함수를 호출하려고합니다. 4, 7, 10, 1 개월에 각 분기의 특정 날짜에 대한 알림을 보내려합니다. 4/4 분기 기능 만 호출됩니다. 네 함수를 모두 호출 할 수있는 방법은 무엇입니까? 여기 내 코드입니다 :마지막으로 로컬 알림 기능 만 호출되는 이유는 무엇입니까?
// UISwitch을 네 분기
@IBAction func quarterlyFrequencyTapped(_ sender: UISwitch) {
if quarterlyFrequency.isOn == true {
firstQuarter(); secondQuarter(); thirdQuarter(); fourthQuarter()
print("quarterly frequency is \(quarterlyFrequency.isOn)")
} else {
removeQuarterlyNotification()
print("quaterly frequency is \(monthlyFrequency.isOn)")
}
}
// 함수
func firstQuarter() {
let firstQuarterContent = UNMutableNotificationContent()
firstQuarterContent.title = "First Quarter"
firstQuarterContent.subtitle = "Some string"
firstQuarterContent.body = "Some other string"
var firstQuarterDate = DateComponents()
firstQuarterDate.month = 3
firstQuarterDate.day = 11
firstQuarterDate.hour = 19
firstQuarterDate.minute = 20
let firstQuarterTrigger = UNCalendarNotificationTrigger(dateMatching: firstQuarterDate, repeats: true)
let firstQuarterRequestIdentifier = "Quarterly"
let firstQuarterRequest = UNNotificationRequest(identifier: firstQuarterRequestIdentifier, content: firstQuarterContent, trigger: firstQuarterTrigger)
UNUserNotificationCenter.current().add(firstQuarterRequest, withCompletionHandler: nil)
}
func secondQuarter() {
let secondQuarterContent = UNMutableNotificationContent()
secondQuarterContent.title = "Second Quarter"
secondQuarterContent.subtitle = "Some string"
secondQuarterContent.body = "Some other string"
var secondQuarterDate = DateComponents()
secondQuarterDate.month = 3
secondQuarterDate.day = 11
secondQuarterDate.hour = 19
secondQuarterDate.minute = 21
let secondQuarterTrigger = UNCalendarNotificationTrigger(dateMatching: secondQuarterDate, repeats: true)
let secondQuarterRequestIdentifier = "Quarterly"
let secondQuarterRequest = UNNotificationRequest(identifier: secondQuarterRequestIdentifier, content: secondQuarterContent, trigger: secondQuarterTrigger)
UNUserNotificationCenter.current().add(secondQuarterRequest, withCompletionHandler: nil)
}
func thirdQuarter() {
let thirdQuarterContent = UNMutableNotificationContent()
thirdQuarterContent.title = "Third Quarter"
thirdQuarterContent.subtitle = "Some string"
thirdQuarterContent.body = "Some other string"
var thirdQuarterDate = DateComponents()
thirdQuarterDate.month = 3
thirdQuarterDate.day = 11
thirdQuarterDate.hour = 19
thirdQuarterDate.minute = 22
let thirdQuarterTrigger = UNCalendarNotificationTrigger(dateMatching: thirdQuarterDate, repeats: true)
let thirdQuarterRequestIdentifier = "Quarterly"
let thirdQuarterRequest = UNNotificationRequest(identifier: thirdQuarterRequestIdentifier, content: thirdQuarterContent, trigger: thirdQuarterTrigger)
UNUserNotificationCenter.current().add(thirdQuarterRequest, withCompletionHandler: nil)
}
func fourthQuarter() {
let fourthQuarterContent = UNMutableNotificationContent()
fourthQuarterContent.title = "Fourth Quarter"
fourthQuarterContent.subtitle = "Some string"
fourthQuarterContent.body = "Some other string"
var fourthQuarterDate = DateComponents()
fourthQuarterDate.month = 3
fourthQuarterDate.day = 11
fourthQuarterDate.hour = 19
fourthQuarterDate.minute = 23
let fourthQuarterTrigger = UNCalendarNotificationTrigger(dateMatching: fourthQuarterDate, repeats: true)
//let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 60, repeats: true)
let fourthQuarterRequestIdentifier = "Quarterly"
let fourthQuarterRequest = UNNotificationRequest(identifier: fourthQuarterRequestIdentifier, content: fourthQuarterContent, trigger: fourthQuarterTrigger)
UNUserNotificationCenter.current().add(fourthQuarterRequest, withCompletionHandler: nil)
}
네 번째 만 호출되는 것을 어떻게 알 수 있습니까? 이 코드 블록에는 아무런 문제가 없습니다. – TheValyreanGroup
이'firstQuarter(); secondQuarter(); 3 분기(); fourthQuarter()'는 모두 4를 실행합니다 ... 잘못 없습니다. 아마 함수가 잘못 작동합니다 – Honey
이것을 테스트하려면 각 분기 함수를 1 분 간격으로 설정하고 시뮬레이터를 실행해야합니다. 시뮬레이터에서는 네 번째 알림 만 실행됩니다. – nsd32