我正在写一个闹钟iOS应用程序。这是我第一次使用UILocalNotification。我从日期选择器中获取日期。我已经格式化了日期以检查我的功能是否正在通过正确的日期,它是。我检查了UILocalNotification的所有必需属性,并且我已经完成了所有这些属性,我的通知仍然无法触发。任何想法为什么?谢谢您的帮助。
#import "BIDAlarmViewController.h"
@interface BIDAlarmViewController ()
@end
@implementation BIDAlarmViewController
@synthesize datePicker;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib
}
- (void)didReceiveMemoryWarning{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(IBAction)setReminderUsingDateFromDatePicker: (id)sender{
[self scheduleNotificationForDate: datePicker.date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd 'at' HH:mm"];
NSString *formattedDateString = [dateFormatter stringFromDate:datePicker.date];
NSLog(@"Button Pressed.. date: %@", formattedDateString);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alarm activated"
message:@"Alarm has been set"
delegate:self cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
-(void) scheduleNotificationForDate: (NSDate*)date {
UILocalNotification *alarm = [[UILocalNotification alloc] init];
if (alarm) {
alarm.fireDate = date;
alarm.timeZone = [NSTimeZone defaultTimeZone];
alarm.repeatInterval = 0;
alarm.soundName = @"alarmsound.caf";
alarm.alertBody = @"Test message...";
[[UIApplication sharedApplication] scheduleLocalNotification:alarm];
}
}
@end
答案 0 :(得分:1)
确保您已在应用委托中实施了引用的方法,如下所示:
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
NSLog(@"Notification fired"!);
}
Apple关于实施此方法的说明:
本地通知与远程推送通知类似,但是 区别在于它们是完全安排,显示和接收的 相同的设备。应用程序可以创建和安排本地 通知,然后操作系统将其发送给 安排日期和时间。如果它在应用程序没有时提供它 在前台活动时,它会显示警报,标记应用程序 图标,或播放声音 - 在...中指定的任何内容 UILocalNotification对象。如果应用程序正在运行 前景,没有警报,徽章或声音;相反, application:didReceiveLocalNotification:如果调用方法 代表实现它。
如果希望通知该代理,则委托可以实现此方法 发生了本地通知。例如,如果应用程序是 日历应用程序,它可以枚举其日历事件列表 确定哪些具有已发生或即将发生的到期日 很快就会发生。它还可以重置应用程序图标徽章 number,它可以访问本地通知中的任何自定义数据 object的userInfo字典。