lgvv98

[iOS] 시뮬레이터에서 Remote Notification (푸시알림) 본문

apple/Docs, iOS, Swift

[iOS] 시뮬레이터에서 Remote Notification (푸시알림)

lgvv 2022. 8. 17. 18:03

[iOS] 시뮬레이터에서 Remote Notification (푸시알림)

 

 

오늘은 시뮬레이터에서 푸시 알림을 날리는 방법을 알아봅시다.

 

 

1. 시뮬레이터를 실행한 상황에서 터미널을 열고 아래의 코드를 실행해주세요. 

 xcrun simctl list devices | grep Booted

시뮬레이터 아이디

2. 노티피케이션을 보낼 파일을 준비해주세요.

 

 - 제가 만든 파일을 다운 받으셔도 좋습니다.

test.apns
0.00MB
json

 

3. 노티피케이션 쏘기

xcrun simctl push {디바이스 아이디} {앱 번들} {파일 경로}

// 👇🏻 예시
xcrun simctl push 12345678-1A2B-3B4D-56C1-123A456B789C com.notication.lgvv /User/Desktop/test.apns

// 성공하면 터미널에 
Notification sent to 'com.notication.lgvv'

 

 

 

 

Comments