1

我想在 Objective-C 中编写 UIlocalNotification 的关闭按钮

4

1 回答 1

0

无法访问关闭按钮操作。

调度后LocalNotification成为系统事件,所以只能访问视图事件,调用didReceiveLocalNotification()方法。

以下示例显示了如何访问视图事件,如上所述:

- (void)application:(UIApplication *)application 
        didReceiveLocalNotification:(UILocalNotification *)notification
于 2013-02-21T22:19:57.103 回答