- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的问题,但找不到答案。我正在使用一些 iBeacons 测试一个应用程序,我发现我的一个 iBeacons 从未开始测距……该区域受到监控,只是没有被检测到。当我查看控制台输出时,会检测到其他信标,然后几秒钟后,会检测到另一个信标,但它具有与已检测到的其他位置之一相同的 UUID/主要/次要/标识符值。
因此,除了一个信标之外,所有信标都会被识别,并且它们的状态也会被确定。然后,似乎已经确定的信标之一再次被确定(相同的信息)。这些信标有点靠近(x、y 方向相距约一米,但位于不同楼层(二楼和三楼),我想知道一个信标信号是否可以覆盖另一个信标信号......这就是为什么我看到其中一个信标的信息两次。否则我不确定为什么我无法检测到这个信标。
这是我的一些代码,我对其进行了梳理,我找不到任何人为错误的问题,例如输入正确的主要/次要/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
。
更新
我更改了主要/次要
值(这与另一个信标冲突......但并不是真的,因为UUID
不同......所以它应该' t 很重要),现在信标在 didDetermineState
期间被识别...但在测距期间我没有收到任何信息。我可以在日志中看到它经历了 locationManager?.startRangingBeacons(in: Region as! CLBeaconRegion)
函数`...所以我应该接收信息(UUID/major/minor/identifier/任何东西)从中。
最佳答案
具有相同 UUID、主要和次要的多个信标将表现得像一个区域。
我认为您缺少状态
。当任何区域的状态发生变化(退出或进入)时,或者您为该区域显式调用 requestStateForRegion
时,都会调用 didDetermineState
。日志中一个信标的两种状态,我认为一种用于状态进入,另一种用于状态退出。
在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/
好吧,假设我有一堆光盘放在已知固定位置的飞机上。每个圆盘的半径为 1 个单位。该平面完全被一组圆盘覆盖,事实上,它被一组圆盘广泛覆盖,在某些区域覆盖了一两个数量级。我想找到仍然完全覆盖飞机的光盘子集。
我有一个涉及大量相关表的系统。考虑一个标准的类别/产品/订单/客户/订单项目场景。有些表是自引用的(如类别)。这些表都不是特别大(大约 10 万行,估计规模约为 100 万行)。我需要考虑这些数据的很
我正在学习 https://near.academy/near101/chapter-6 中的教程 其中一个步骤是运行此命令(但使用我的帐户): near call museum.testnet ad
我正在启动一个分析项目,该项目将处理数百万地理定位数据。数据可能是这样的: 编号{ 用户身份, 长, 纬度, 时间, 应用ID } 我的主要操作: 获取区域中包含的所有数据 找到属于某个userId的
在性能方面,JSON 解析需要大量时间来检索数据。在我的应用程序中,我需要从服务器获取近 10,000 条记录。在模拟器上,它立即获取数据并高效工作。但在我的 android 手机中,它需要超过2 分
任何人都可以帮助我从投影矩阵 44 获得左、右、下、上、近和远边界值吗? 最佳答案 这里是方程组的分辨率 Christian Rau引用: 对于正交矩阵: near = (1+m34)/m33;
我正在通过后台线程将 1,00,000 条记录插入到数据库中。此时,当我想要加载 Ui 屏幕时,出现内存不足错误。例如,当堆大小为 5 MB 且分配给后台线程的内存为 4 MB 时,加载 UI 屏幕需
C++如何存储近100000位的海量数字?.. 我试过使用 long long int 和 long double int..对我没有任何作用.. 有没有其他方法可以存储这么大的数字? 我希望找到大于
我是一名优秀的程序员,十分优秀!