I am writing an independent WatchOS App that uses CoreLocation. I want to ensure that location updates are never paused. Apple defines pausesLocationUpdatesAutomatically here, which is exactly what I was looking for. The only problem is that it is not available for WatchOS apparently. In an iOS app it is available. Once I realized this, I checked in CLLocationManager.h and it isn't there at all.
Then I found on a Microsoft site of all places (Xamarin) that it is unavailable for WatchOS apps, and is available for iOS apps.
How can I find info like this either from Apple's docs or in the header files...this is pretty confusing to me. It was not clear to me on the Apple website that this would be unavailable for a WatchOS app.