//앱 최초 실행 시 push 설정(푸쉬알림, 광고성 정보 수신동의 on) 1회성
func isFirstPush() -> (Bool) {
let isBool = UserDefaults.standard.bool(forKey: UDataKey.InitPush)
if !isBool {
UserDefaults.standard.set(true, forKey: UDataKey.InitPush)
}
return isBool
}
'개발 > 아이오에스' 카테고리의 다른 글
ios] 에러해결 - command phasescriptexecution failed with a nonzero exit code (0) | 2021.09.07 |
---|---|
swift]앱에서 디바이스 환경설정 - 해당 앱 알림 설정 창 화면에 띄우는 방법 (0) | 2021.08.26 |
swift] UIView에 background에 image 파일 적용하기 (0) | 2021.08.05 |
swift] scrollview안에서 uibutton - 액션이(touchupInside) 먹히지 않음 (0) | 2021.07.29 |
swift] 코드로 UIscrollView 구현하기 (0) | 2021.07.28 |