Notice
Recent Posts
Recent Comments
Link
관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - swift] 알람 설정(push setting) 코드에서 확인 방법 본문

iOS 응용 (swift)

[iOS - swift] 알람 설정(push setting) 코드에서 확인 방법

jake-kim 2021. 4. 5. 22:17

시스템 알람 설정에서 on/off 여부 코드에서 확인 방법

let isPushOn = UIApplication.shared.isRegisteredForRemoteNotifications

if isPushOn {
    print("push on")
} else {
    print("push off")
}

push enable, disable 설정 방법

  • 해당 방법은 앱을 실행하고 있는 경우에 해당
// disable
UIApplication.shared.unregisterForRemoteNotifications()

// enable
UIApplication.shared.registerForRemoteNotifications()
  • 주의: 시스템 설정 영역은 사용자가 선택하여 동작되기 때문에 코드에서 시스템 영역의 push 설정 업데이트는 불가능
Comments