0

如何在 Objective-C 中处理 UILocalNotification 的关闭事件?
或者我可以检测到通知已完成?
如何将此代码修改为关闭按钮中的代码?

localNotification.alertBody=[NSString stringWithFormat:@"%@",[tmpdict objectForKey:@"Reminder"]];

NSDictionary *snoozeDic=[tmpdict objectForKey:@"Snooze"];
if ([[snoozeDic valueForKey:@"Switch"]intValue]==1) {
    localNotification.alertAction=@"Snooze";
} else
{
    localNotification.hasAction=NO;
}
4

1 回答 1

1

无法访问关闭按钮操作。安排 LocalNotification 后,它成为系统事件,您只能使用“didReceiveLocalNotification”访问“视图”事件

- (void)application:(UIApplication *)application 
        didReceiveLocalNotification:(UILocalNotification *)notification

相信我,我希望不是这样……

于 2012-04-25T15:16:04.930 回答