我们如何在iPhone中获取本地通知

时间:2011-07-13 07:32:50

标签: iphone uilocalnotification

我想根据用户定义的时间和日期添加通知。我怎么能这样做?

3 个答案:

答案 0 :(得分:3)

您需要做的事情在罚款documentation.

中进行了解释

答案 1 :(得分:0)

设置UILocalNotification并使用scheduleLocalNotification: UIApplication进行安排。

答案 2 :(得分:0)

UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.alertBody = @"HI";
[notif setFireDate:DATE];// fire the notification in ten minutes
notif.alertAction = @"View";
notif.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:notif];