gpt4 book ai didi

ios - 应用程序在后台运行时如何获取室内位置X和Y位置?

转载 作者:行者123 更新时间:2023-11-29 10:31:39 26 4
gpt4 key购买 nike

目前我正在开发 Estimote 室内定位 SDK 以使用室内定位服务,我正在获取当应用处于前台时的 X 和 Y 位置,但我也想当应用程序在后台时获取 X 和 Y 位置因此它可以在 Estimote 室内 SDK 中实现。

最佳答案

你会在 Swift 中找到答案 here

- (BOOL)application:(UIApplication *)application      didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
_locationManager = [[CLLocationManager alloc] init];
_locationManager.delegate = self;
CLBeaconRegion *region;

region = [[CLBeaconRegion alloc] initWithProximityUUID:[[NSUUID alloc] initWithUUIDString:@"2F234454-CF6D-4A0F-ADF2-F4911BA9FFA6"] major: 1 minor: 1 identifier: @"region1"];
region.notifyEntryStateOnDisplay = YES;
[_locationManager startMonitoringForRegion:region];
[_locationManager startRangingBeaconsInRegion:region];

return YES;

您必须调整此代码才能使用 Estimote Indoor Location SDK

关于ios - 应用程序在后台运行时如何获取室内位置X和Y位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29347015/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com