CLLocationManager.StartMonitoring 方法

定义

重载

StartMonitoring(CLRegion)

开始监视 region 进入和退出。

StartMonitoring(CLRegion, Double)

开始监视区域。

StartMonitoring(CLRegion)

开始监视 region 进入和退出。

[Foundation.Export("startMonitoringForRegion:")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void StartMonitoring (CoreLocation.CLRegion region);
[Foundation.Export("startMonitoringForRegion:")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 8, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void StartMonitoring (CoreLocation.CLRegion region);
abstract member StartMonitoring : CoreLocation.CLRegion -> unit
override this.StartMonitoring : CoreLocation.CLRegion -> unit

参数

region
CLRegion

要监视的区域。

属性

注解

应用程序最多可以监视 20 个由) 区域定义 Identifier 的唯一名称 (。 传递区域通知的速度取决于网络连接。

区域进入/退出通知通常在 3-5 分钟内到达。 半径小于 400 米的区域在 iPhone 4S 和更高版本的设备上效果更好。 在具有 M7 协处理器的设备上, (通知速度似乎最快。)

适用于

StartMonitoring(CLRegion, Double)

开始监视区域。

[Foundation.Export("startMonitoringForRegion:desiredAccuracy:")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void StartMonitoring (CoreLocation.CLRegion region, double desiredAccuracy);
abstract member StartMonitoring : CoreLocation.CLRegion * double -> unit
override this.StartMonitoring : CoreLocation.CLRegion * double -> unit

参数

region
CLRegion

要监视的区域

desiredAccuracy
Double

精度(以米为单位)。

属性

注解

应用程序最多可以监视 20 个由) 区域定义 Identifier 的唯一名称 (。 传递区域通知的速度取决于网络连接。

区域进入/退出通知通常在 3-5 分钟内到达。 半径小于 400 米的区域在 iPhone 4S 和更高版本的设备上效果更好。 在具有 M7 协处理器的设备上, (通知速度似乎最快。)

适用于