我有一个简单的问题,找不到答案。我正在使用一些iBeacon测试应用程序,并且观察到我的iBeacon之一从未开始测距...该区域受到监视,只是未被检测到。当我查看控制台输出时,其他信标被检测到,然后在几秒钟后,另一个信标被检测到,但是它具有与已经检测到的其他位置相同的UUID / major / minor / identifier值。
因此,除了一个信标外,所有信标都将被识别,其状态也将被确定。然后,似乎已经确定的信标之一再次被确定(相同信息)。这些信标有点靠在一起(在x,y上相距约一米,但在不同的楼层(2楼和3楼),我想知道一个信标信号是否可以覆盖另一个信标...这就是为什么我看到两次获取一个信标的信息,否则我不确定为什么我无法检测到这个信标。
这是我的一些代码,我已经对其进行了梳理,但找不到人为错误的东西有什么错误,例如输入正确的主/次/ UUID值。
调用此函数开始监视信标:
func monitorBeacons() {
print("monitorBeacons()")
if CLLocationManager.isMonitoringAvailable(for:
CLBeaconRegion.self) {
print("monitorBeacons().monitoringIsAvailable")
// Match all beacons with the specified UUID
let proximityUUIDA = UUID(uuidString:
"12345678-B644-4520-8F0C-720EAF059935")
let proximityUUIDB = UUID(uuidString:
"E2C56DB5-DFFB-48D2-B060-D0F5A71096E0")
let beaconRegionA = CLBeaconRegion(
proximityUUID: proximityUUIDB!,
major: 0x0001,
minor: 0x0004,
identifier: "locationA 49398")
let beaconRegionB = CLBeaconRegion(
proximityUUID: proximityUUIDB!,
major: 0x0001,
minor: 0x0002,
identifier: "locationB 49267")
let beaconRegionC = CLBeaconRegion(
proximityUUID: proximityUUIDB!,
major: 0x0001,
minor: 0x0005,
identifier: "locationC 49141")
let beaconRegionD = CLBeaconRegion(
proximityUUID: proximityUUIDA!,
major: 0x0001,
minor: 0x0002,
identifier: "locationD DSDTECH")
let beaconRegionE = CLBeaconRegion(
proximityUUID: proximityUUIDB!,
major: 0x0001,
minor: 0x0001,
identifier: "locationE 33803")
self.locationManager?.startMonitoring(for: beaconRegionA)
self.locationManager?.startMonitoring(for: beaconRegionB)
self.locationManager?.startMonitoring(for: beaconRegionC)
self.locationManager?.startMonitoring(for: beaconRegionD)
self.locationManager?.startMonitoring(for: beaconRegionE)
print("\(String(describing: self.locationManager?.monitoredRegions)) + monitoredRegions")
}
}
当确定他们的状态时,会发生这种情况:
func locationManager(_ manager: CLLocationManager, didDetermineState state: CLRegionState, for region: CLRegion) {
if region is CLBeaconRegion {
print("determined state of beacon for region - \(region)")
// Start ranging only if the feature is available.
if CLLocationManager.isRangingAvailable() {
print("determined state of beacon and started ranging")
locationManager?.startRangingBeacons(in: region as! CLBeaconRegion)
// Store the beacon so that ranging can be stopped on demand.
beaconsToRange.append(region as! CLBeaconRegion)
}
}
}
控制台输出:
determined state of beacon for region - CLBeaconRegion (identifier:'locationA 49398', uuid:E2C56DB5-DFFB-48D2-B060-D0F5A71096E0, major:1, minor:4)
determined state of beacon for region - CLBeaconRegion (identifier:'locationB 49267', uuid:E2C56DB5-DFFB-48D2-B060-D0F5A71096E0, major:1, minor:2)
determined state of beacon for region - CLBeaconRegion (identifier:'locationC 49141', uuid:E2C56DB5-DFFB-48D2-B060-D0F5A71096E0, major:1, minor:5)
determined state of beacon for region - CLBeaconRegion (identifier:'locationE 33803', uuid:E2C56DB5-DFFB-48D2-B060-D0F5A71096E0, major:1, minor:1)
determined state of beacon for region - CLBeaconRegion (identifier:'locationE 33803', uuid:E2C56DB5-DFFB-48D2-B060-D0F5A71096E0, major:1, minor:1)
您可以看到最后两个信标是相同的,但是它不应该为一个信标两次确定状态,这就是为什么我认为信号可能被混淆的原因,也许是因为我缺少的
locationD DSDTECH
和locationE 33803
。更新
我更改了
major/minor
的值(与另一个信标发生冲突...但不是真的,因为UUID
的值不同...所以应该没关系),现在信标在didDetermineState
期间被识别。 ..但在测距期间我没有收到任何信息。我在日志中看到它通过了locationManager?.startRangingBeacons(in: region as! CLBeaconRegion)
函数`...所以我应该从中接收信息(UUID /主要/次要/标识符/任何东西)。 最佳答案
具有相同UUID,主要和次要的多个信标的行为就像一个区域。
我认为您错过了status
。当任何区域的状态发生变化(退出或确实进入)或您为该区域明确调用didDetermineState
时,都会调用requestStateForRegion
。日志中一个信标的两种状态,我认为一种用于状态输入,另一种用于状态退出。
在didDetermineState
中检查区域状态,只有在区域状态为CLRegionStateInside
时才开始肆虐
if state == CLRegionStateInside {
locationManager?.startRangingBeacons(in: region as! CLBeaconRegion)
beaconsToRange.append(region as! CLBeaconRegion)
}
如果您已经在区域中,则除非退出该区域并再次输入,否则不会呼叫
didDetermineState
。为了克服这个问题,您应该像这样对每个区域调用requestStateForRegion
。self.locationManager?.startMonitoring(for: beaconRegionA)
self.locationManager?.requestState(for: beaconRegionA)
关于ios - 如果两个iBeacon靠在一起,一个信号能否在到达设备(iPhone)的过程中覆盖另一个信号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49073422/