How to get the current location in watchOS 2?
问题 I need to fetch the user current location for the WatchKit App in watchOS 2. How do I do this? 回答1: The other answers are incorrect. You can request location directly on the watch for watch OS2. The available method is called requestLocation . It allows you to request a single location update. E.g. #import <CoreLocation/CoreLocation.h> @interface className : WKInterfaceController<CLLocationManagerDelegate> Then where you want to request location: self.locationManager = [CLLocationManager new]