푸시 알림
푸시 알림 기능은 모바일 푸시 알림을 위해 확장으로 분리되었습니다. 알림을 구현하기 위해 다음 기사를 읽어보세요:
제목 | 링크 |
---|---|
원격 푸시 알림: 확장 | 원격 푸시 알림 |
로컬 푸시 알림: 가이드 | 로컬 푸시 알림 |
활용 예제
원격 푸시 알림 예제
// 원격 푸시 알림을 설정하는 코드
var notification = push_notification_create("Hello World", "This is a remote notification.");
push_notification_send(notification);
로컬 푸시 알림 예제
// 로컬 푸시 알림을 설정하는 코드
var local_notification = push_notification_create("Reminder", "Don't forget your meeting at 3 PM.");
push_notification_schedule(local_notification, current_time + 3600);
푸시 알림 수신 처리 예제
// 푸시 알림 수신 시 처리하는 코드
if (push_notification_received()) {
var notification_data = push_notification_get_data();
show_message(notification_data.title + ": " + notification_data.message);
}
푸시 알림 취소 예제
// 특정 푸시 알림을 취소하는 코드
push_notification_cancel(notification_id);
이 문서에서는 푸시 알림의 기본적인 구현 방법과 활용 예제를 소개했습니다. 각 예제를 통해 푸시 알림 기능을 어떻게 사용할 수 있는지 이해할 수 있습니다.