|
|
|
|
|
by JimDabell
1082 days ago
|
|
They are wrong; you can determine whether you have permission in iOS. For location, you have CLAuthorizationStatus: https://developer.apple.com/documentation/corelocation/claut... In any case, the iOS location services don’t work that way. You can’t call them and get a location back due to the way the system works. It simply doesn’t have location data at times and needs to wait for it to become available. You tell the operating system you want to receive location updates and then it delivers zero or more when that information becomes available and when it becomes more accurate or changes. So if iOS needed to withhold information, it wouldn’t have to give an empty object back, it would just not deliver any location updates at all. |
|