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.
我想知道,如果用户单击通知中心的通知,应用程序是否可以检测到他们正在单击的通知以及我该如何处理?谢谢。
是的。在您的应用委托中,通知详细信息将在方法中接收- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
将userInfo包含您随推送通知一起发送的有效负载。它建议您在发送推送通知时在有效负载中包含识别信息(例如对象 ID),以确定选择/接收了哪个推送通知。
userInfo