用极光推送,如果不通过点击推送的通知进入app,而是通过点击app图标进入app, 那么怎么获取它已经推送过的消息?
人生最曼妙的风景,竟是内心的淡定与从容!
답변을 찾았습니다. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkDidReceiveMessage:) name:kJPFNetworkDidReceiveMessageNotification object:nil];
그런 다음 메소드를 구현합니다 - (void)networkDidReceiveMessage:(NSNotification *)notification;
답변을 찾았습니다. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkDidReceiveMessage:) name:kJPFNetworkDidReceiveMessageNotification object:nil];
을 추가해야 합니다.그런 다음 메소드를 구현합니다 - (void)networkDidReceiveMessage:(NSNotification *)notification;
그 다음 서버측에서는 apns가 아닌 Aurora Push에서 제공하는 SDK에 앱으로 보내는 메시지를 작성해야 합니다