forked from dotnet/macios
-
Notifications
You must be signed in to change notification settings - Fork 1
CoreLocation macOS xcode9 beta5
Vincent Dondain edited this page Aug 7, 2017
·
2 revisions
#CoreLocation.framework
diff -ruN /Applications/Xcode9-beta4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h /Applications/Xcode9-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h
--- /Applications/Xcode9-beta4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h 2017-07-14 02:47:35.000000000 -0400
+++ /Applications/Xcode9-beta5.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocationManager.h 2017-08-01 01:07:09.000000000 -0400
@@ -265,6 +265,26 @@
@property(assign, nonatomic) BOOL allowsBackgroundLocationUpdates API_AVAILABLE(ios(9.0), watchos(4.0)) API_UNAVAILABLE(macos) __TVOS_PROHIBITED;
/*
+ * showsBackgroundLocationIndicator
+ *
+ * Discussion:
+ * Specifies that an indicator be shown when the app makes use of continuous
+ * background location updates. Starting continuous background location
+ * updates requires the app to set UIBackgroundModes to include "location"
+ * and to set the property allowsBackgroundLocationUpdates to YES before
+ * calling -startUpdatingLocation with the intent to continue in the
+ * background.
+ *
+ * Note that this property only applies to apps with Always authorization.
+ * For apps with WhenInUse authorization, the indicator is always shown when
+ * using continuous background location updates in order to maintain user
+ * visibility and that the app is still in use.
+ *
+ * The default value of this property is NO.
+ */
+@property(assign, nonatomic) BOOL showsBackgroundLocationIndicator API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(macos) __TVOS_PROHIBITED __WATCHOS_PROHIBITED;
+
+/*
* location
*
* Discussion: