iOS, CoreLocation - Get users location when the ap

2019-08-14 04:38发布

I am trying to get my app to get the longitude and latitude of the users current position as soon as they load up the app. From here I can tell if they are a certain distance from a point, and call different functions based on this.

I can get it to work fine from viewDidLoad, but I don't want it to keep performing this every time said view is loaded. How would I (if possible) call this from the app delegates didFinishLaunchingWithOptions method?

1条回答
Bombasti
2楼-- · 2019-08-14 05:06

I think you're looking for CLLocationManager, which is the GPS implementation. It has no UI and runs in the background, but you don't invoke it from the PList, you implement a class. Find the "LocateMe" example project for the code.

查看更多
登录 后发表回答