Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个接收 NSLocalNotifications 的应用程序。没关系,但是当我触发通知并从应用程序列表中删除应用程序时,双击主页按钮后,它会收到本地通知就可以了。问题是启动这个被杀死的应用程序时调用了哪个方法?
本地通知不会启动您的应用程序(请参阅文档引用),您可以在启动应用程序时期待通常的委托调用
应用程序可以创建和安排本地通知,然后操作系统在安排的日期和时间发送它。如果它在应用程序未在前台处于活动状态时传递它,它会显示警报、标记应用程序图标或播放声音——无论 UILocalNotification 对象中指定什么。如果应用程序在前台运行,则没有警报、标记或声音;相反,如果委托实现它,则调用 application:didReceiveLocalNotification: 方法。