在我的应用委托(delegate)中,方法 - (void)applicationUIApplication *)application didReceiveLocalNotification: (UILocalNotification *)notification 永远不会被调用。
这就是我创建通知的方式:
UILocalNotification *notification = [[UILocalNotification alloc] init];
// set UUID, which we will store in userDefaults for later
NSMutableDictionary *myUserInfo = [[NSMutableDictionary alloc] init];
NSString *uuid = [[NSProcessInfo processInfo] globallyUniqueString];
[myUserInfo setValue:uuid forKey:KEY_UUID];
[myUserInfo setValue"month" forKey:KEY_UNIT];
[myUserInfo setObjectYES forKey:KEY_RESCHEDULE];
NSInteger row = [_wurmProphylaxePickerView selectedRowInComponent:0];
switch (row) {
case 0:
[myUserInfo setValue2 forKey:KEY_FREQUENCY];
break;
case 1:
[myUserInfo setValue4 forKey:KEY_FREQUENCY];
break;
case 2:
[myUserInfo setValue6 forKey:KEY_FREQUENCY];
break;
default:
[myUserInfo setValue4 forKey:KEY_FREQUENCY];
break;
}
notification.userInfo = myUserInfo;
// calculate date for next notification, depends on the user's selection
NSDate *today = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *myComps = [[NSDateComponents alloc] init];
[myComps setMinute:1];
notification.fireDate = [calendar dateByAddingComponents:myComps toDate:today options:0];
notification.timeZone = [NSTimeZone localTimeZone];
notification.alertBody = @"My alertBody";
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
这是在我的应用委托(delegate)中,但从未被调用:
- (void)applicationUIApplication *)application didReceiveLocalNotification: (UILocalNotification *)notification
{
NSDictionary *userInfo = notification.userInfo;
BOOL repeat = [[userInfo objectForKey:KEY_RESCHEDULE] boolValue];
if (repeat)
{
NSInteger frequency = (NSInteger)[userInfo objectForKey:KEY_FREQUENCY];
NSString *unit = (NSString *)[userInfo objectForKey:KEY_UNIT];
NSString *uuid = (NSString *)[userInfo objectForKey:KEY_UUID];
// calculate date for next notification
NSDate *today = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *myComps = [[NSDateComponents alloc] init];
if ([unit isEqualToString"month"]) {
//[myComps setMonth:frequency];
[myComps setMinute:frequency];
} else {
}
// create new notification
UILocalNotification *newNotification = [[UILocalNotification alloc] init];
newNotification.fireDate = [calendar dateByAddingComponents:myComps toDate:today options:0];
newNotification.timeZone = [NSTimeZone localTimeZone];
newNotification.alertAction = notification.alertAction;
newNotification.alertBody = notification.alertBody;
newNotification.userInfo = notification.userInfo;
// schedule it
[[UIApplication sharedApplication] scheduleLocalNotification:newNotification];
}
}
在 iOS 8 上测试,不确定 iOS 7...
Best Answer-推荐答案 strong>
如果在通知触发时应用程序未处于事件状态,您将在 didFinishLaunchingWithOptions 中进行处理,如 Local and Push Notifications Programming Guide 的 处理本地和远程通知 部分中的示例所示:
- (BOOL)applicationUIApplication *)app didFinishLaunchingWithOptionsNSDictionary *)launchOptions {
UILocalNotification *localNotif =
[launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
if (localNotif) {
NSString *itemName = [localNotif.userInfo objectForKey:ToDoItemKey];
[viewController displayItem:itemName]; // custom method
app.applicationIconBadgeNumber = localNotif.applicationIconBadgeNumber-1;
}
[window addSubview:viewController.view];
[window makeKeyAndVisible];
return YES;
}
如果在通知触发时应用程序处于事件状态,则调用 didReceiveLocalNotification 。
关于ios - App Delegate 的应用程序 :didReceiveLocalNotification: not called,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28073152/
|