Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- uiscrollview
- rxswift
- Observable
- 리펙토링
- map
- ios
- swift documentation
- Xcode
- clean architecture
- 리펙터링
- RxCocoa
- 리팩토링
- tableView
- 애니메이션
- uitableview
- combine
- Clean Code
- collectionview
- 클린 코드
- 스위프트
- MVVM
- Refactoring
- UITextView
- Human interface guide
- SWIFT
- ribs
- Protocol
- swiftUI
- UICollectionView
- HIG
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 알람 설정(push setting) 코드에서 확인 방법 본문
시스템 알람 설정에서 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 설정 업데이트는 불가능
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] 이메일, 핸드폰 번호 탭 -> 입력 화면으로 이동 (mailto, tel) (0) | 2021.04.28 |
---|---|
[iOS - swift] 한글 개행, 줄바꿈, 한글 Line Break 설정 (어절단위 -> 글자단위) (0) | 2021.04.05 |
[iOS - swift] 동적으로 tableView의 frame사이즈 변경 방법, intrinsicContentSize (0) | 2021.04.02 |
[iOS - swift] Custom View (only code) (3) | 2021.04.02 |
[iOS - swift] PageControl, UIScrollView, 안내화면 (2) | 2021.03.30 |
Comments