locationManagerDidChangeAuthorization

    [Swift] CLLocationManager.locationServicesEnabled() Issue 문제

    Xcode 14.0 업그레이드 후 iOS 16 기기에서 CLLocationManager.locationServicesEnabled() 사용 후 문제점 This method can cause UI unresponsiveness if invoked on the main thread. Instead, consider waiting for the -locationManagerDidChangeAuthorization: callback and checking authorizationStatus first. 해결방안 CLLocationManager.locationServicesEnabled() -> CLLocationManager.authorizationStatus 활용 lazy var locationManager:..