Use a dispatch queue to move it off the main queue like so:
DispatchQueue.global().async {
if CLLocationManager.locationServicesEnabled() {
// your code here
}
}
Use a dispatch queue to move it off the main queue like so:
DispatchQueue.global().async {
if CLLocationManager.locationServicesEnabled() {
// your code here
}
}