gpt4 book ai didi

ios - 特定时间的本地通知

转载 作者:搜寻专家 更新时间:2023-11-01 07:23:41 25 4
gpt4 key购买 nike

我有一个应用程序,我需要在特定的日期和时间收到通知。我正在使用以下代码来设置日期和时间。

let app = UIApplication.sharedApplication()

let notificationSettings = UIUserNotificationSettings(forTypes: [.Alert, .Sound], categories: nil)
app.registerUserNotificationSettings(notificationSettings)

let calendar = NSCalendar.currentCalendar()

let date = NSDateComponents()
date.hour = 5
date.minute = 0
date.month = 5
date.day = 21
date.year = 2016
date.timeZone = NSTimeZone.systemTimeZone()

let alarm = UILocalNotification()
alarm.fireDate = calendar.dateFromComponents(date)
alarm.timeZone = NSTimeZone.defaultTimeZone()
alarm.alertTitle = ""
alarm.alertBody = ""
alarm.soundName = "Sound.wav"
app.scheduleLocalNotification(alarm)

我允许通知,我可以在用户离开应用程序后十秒安排通知,但不是特定时间。

最佳答案

除了一件事,你的代码是正确的,小时。 NSDate 在 24 小时系统上工作。因此,如果您希望在下午 5 点收到通知,则需要将小时值设置为 17

date.hour = 5 //this means 05:00 AM
date.minute = 0

date.hour = 17 //this mean 05:00 PM
date.minute = 0

附言- 您的 alertBodyalertTitle 是空白的。您可能希望将其设置为某些内容以使其显示。

希望这对您有所帮助。 :)

关于ios - 特定时间的本地通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37367981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com