Saturday 16 December 2017

ios8 - IOS 8 Location Services Not Working

Summary:
Previously running apps failed to run
geode code and reverse geode code. The reverse geode code fails because the geode code
fails to provide a location. I then swathed to Apple's own LocateMe example code and
also enabled the Location Services under Privacy. I also enabled the "Allow Location
Access" under Location services to Always, but this setting changes back to nothing by
itself after running the Apple's LocateMe or my own
app.



Steps to Reproduce:
It seems
location services SDK to get location is broken. The software that was previously
working on iPhone 5 stopped working after upgrade to IOS 8.
Step 1. Load
example LocateMe Apple's example Core Location example project;
Step 2. Under
system settings enable Location Services, and also change the app's "allow Location
Services" to always.



The Get-Location fails and
"always" setting is removed.




Expected
Results:
Getting location and location updates.



Actual Results:
See
above.



Version:
IOS 8.0.0 and
8.0.2




Notes:



Configuration:
iPhone
5 and iPhone 6 Plus



Adding this this not help
either:
[self.locationManager
requestAlwaysAuthorization];

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...