Jiguang Push를 사용하여 푸시 알림을 클릭하지 않고 앱 아이콘을 클릭하여 앱에 들어가면 푸시된 메시지를 어떻게 받을 수 있나요?
人生最曼妙的风景,竟是内心的淡定与从容!
답변을 찾았습니다. [[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에 앱으로 보내는 메시지를 작성해야 합니다