반응형
아이폰 잠금 비밀번호를 설정했는지 확인하는 코드 (iOS 9 이상 부터 사용가능)
import LocalAuthentication
if LAContext().canEvaluatePolicy(.deviceOwnerAuthentication, error:nil) {
print("잠금 비밀번호 설정함")
} else {
print("잠금 비밀번호 설정 하지 않음")
}
반응형
'iOS > Tip' 카테고리의 다른 글
iOS Locale code (0) | 2022.10.12 |
---|---|
WebSockets on iOS using URLSessionWebSocketTask (0) | 2022.08.08 |
Xcode에서 벡터 이미지 사용하기 (0) | 2022.06.30 |
App Version 비교하기 (0) | 2022.06.30 |
앱 실행시 슬립모드 방지 (0) | 2022.02.09 |
iOS 버젼별 호환 가능한 iPhone 모델 (0) | 2021.09.13 |
Grand Centrial Dispatch Tutorial for Swift 4: Part 2/2 (0) | 2019.03.18 |
Grand Centrial Dispatch Tutorial for Swift 4: Part ½ (0) | 2019.03.18 |