Documentation Archive Developer
Search

CoreLocation Changes

CoreLocation

Removed CLAuthorizationStatus.Authorized
Added CLAuthorizationStatus.AuthorizedAlways
Modified CLAuthorizationStatus [enum]
Declaration
From
enum CLAuthorizationStatus : Int32 {
    case NotDetermined
    case Restricted
    case Denied
    case Authorized
    case AuthorizedWhenInUse
}
To
enum CLAuthorizationStatus : Int32 {
    case NotDetermined
    case Restricted
    case Denied
    case AuthorizedAlways
    case AuthorizedWhenInUse
}