티스토리 뷰

반응형

유니티 로컬 푸시를 이용하고 있다.

아이폰에서 아래팝업에서 기기 알림을 허용했는지 값을 가져오는 방법이다.

푸시 퍼미션 확인..? 이라고 해도 될것같음

// Setting을 가져온다 
var notiSettings = Unity.Notifications.iOS.iOSNotificationCenter.GetNotificationSettings();
// AuthorizationStatus 값이 Authorization이면 동의한 상태 
bool isAuthorization = notiSettings.AuthorizationStatus == Unity.Notifications.iOS.AuthorizationStatus.Authorized;


                

 

 

참고 사이트 : https://docs.unity3d.com/Packages/com.unity.mobile.notifications@1.0/manual/index.html

 

Unity Mobile Notifications Package | Mobile Notifications | 1.0.4-preview.9

Unity Mobile Notifications Package The runtime API is split into two parts: AndroidNotificationCenter and iOSNotificationCenter. These can be used to schedule and manage notifications for their respective platforms. You can download a sample Project which

docs.unity3d.com

 

반응형
댓글