作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我已经尝试了很多东西,但我似乎无法弄清楚在(示例)2 天或 5 小时内使用哪个命令来触发警报。谁能帮我吗?我希望能够执行以下操作:
var number = 3
var repeat = day
*Code with 'number' and 'repeat' in it.*
所以在这种情况下,它会在 3 天内发出警报。这里有人知道该怎么做吗? ^^
提前致谢!
最佳答案
首先,将其放在需要通知的文件顶部:
import UserNotifications
然后把这个放在 AppDelegate
的 application(_:didFinishLaunchingWithOptions:)
中
let notifCenter = UNUserNotificationCenter.current()
let options: UNAuthorizationOptions = [.alert, .badge, .sound]
notifCenter.requestAuthorization(options: options, completionHandler: nil)
所以现在请求通知如下:
// timeInterval is in seconds, so 60*60*12*3 = 3 days, set repeats to true if you want to repeat the trigger
let requestTrigger = UNTimeIntervalNotificationTrigger(timeInterval: (60*60*12*3), repeats: false)
let requestContent = UNMutableNotificationContent()
requestContent.title = "Title" // insert your title
requestContent.subtitle = "Subtitle" // insert your subtitle
requestContent.body = "A body in notification." // insert your body
requestContent.badge = 1 // the number that appears next to your app
requestContent.sound = UNNotificationSound.default()
// Request the notification
let request = UNNotificationRequest(identifier: "PutANameForTheNotificationHere", content: requestContent, trigger: requestTrigger)
// Post the notification!
UNUserNotificationCenter.current().add(request) { error in
if let error = error {
// do something to the error
} else {
// posted successfully, do something like tell the user that notification was posted
}
}
这部分代码做了三件事:
如果您打算继续使用通知,请查看 this tutorial ,其中还讨论了当用户点击您的通知时如何使用react。
注意:UNMutableNotificationContext
是可变的,与名称无关,UN
只是命名空间。不要混淆!
如果您提供副标题,它将位于标题和正文之间。
这是 badge
属性:
关于swift - 经过一定时间后触发 Xcode 通知(Swift 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42993882/
我正在尝试开发右边框/Angular 具有特定 Angular (30°) 的表格。我见过一些类似的解决方案,但它们都无法在一定程度上发挥作用。如果我想从 30° 改变到 20°,我不想花太多力气。
我是一名优秀的程序员,十分优秀!