如何以编程方式触发 UILocalNotification?

How can I programmatically fire a UILocalNotification?

UILocalNotification 有一个 .fireDate 方法,它将 NSDate 作为参数,然后在那个时候触发。但是,如果我想在我的代码中发生某些事情而不使用 NSDate 时触发它怎么办?

创建您的 UILocalNotification 实例并在 UIAplication 实例上调用该方法 -presentLocalNotificationNow:

[[UIApplication sharedApplication]presentLocalNotificationNow:notification]


在 SWIFT:

UIApplication.sharedApplication().presentLocalNotificationNow(notification)