amazon web services - Use CurrentLocation for Continent iPhone -


is there way find out users location continent? need set aws entry point based on if open app in us, or europe. etc.

is there way without taking gps coordinates , making ranges out of them?

if in ios5, can use glgeocoder retrieve information abotu current location:

[self.clgeocoder reversegeocodelocation: locationmanager.location completionhandler:   ^(nsarray *placemarks, nserror *error) {       clplacemark *placemark = [placemarks objectatindex:0];           //placemark contains address  }]; 

clplacemark reference:

https://developer.apple.com/library/ios/#documentation/corelocation/reference/clplacemark_class/reference/reference.html

glgeocoder reference:

https://developer.apple.com/library/ios/#documentation/corelocation/reference/clgeocoder_class/reference/reference.html


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -