我想根据用户定义的时间和日期添加通知。我怎么能这样做?
答案 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];