Suche…
Parameter
Parameter | Einzelheiten |
---|---|
Manager | CLLocationManager-Referenz |
Region | CLRegion kann kreisförmige Region sein (Geofence- oder Beacon-Region) |
Baken | Das Array von CLBeacon enthält alle Ranger Beacons |
Bemerkungen
Baken sind IOT-Objekte. Wir konzentrieren uns auf diejenigen, die dem iBeacon-Protokoll und einem Apple-Standard entsprechen. Jede Bake ist ein Einweggerät, das 3 Dinge überträgt
- UUID
- Haupt
- Geringer
Wir können iBeacons scannen, indem Sie unser CLLocation Manager-Objekt so einrichten, dass es nach Beacons für bestimmte UUID sucht. Alle Beacons mit der angegebenen UUID werden gescannt.
Der CLLocation Manager gibt auch einen Anruf beim Ein- und Austritt der Beacon-Region an.
iBeacon-Grundbedienung
- Überwachungsbaken einrichten
func initiateRegion(ref:BeaconHandler){
let uuid: NSUUID = NSUUID(UUIDString: "<UUID>")
let beacon = CLBeaconRegion(proximityUUID: uuid, identifier: "")
locationManager?.requestAlwaysAuthorization() //cllocation manager obj.
beacon?.notifyOnEntry = true
beacon?.notifyOnExit = true
beacon?.notifyEntryStateOnDisplay = true
locationManager?.startMonitoringForRegion(beacon!)
locationManager?.delegate = self;
// Check if beacon monitoring is available for this device
if (!CLLocationManager.isMonitoringAvailableForClass(CLBeaconRegion)) {
print("error")
}
locationManager!.startRangingBeaconsInRegion(self.beacon!)
}
- Standortmanager betreten und verlassen Region
func locationManager(manager: CLLocationManager, didEnterRegion region: CLRegion) {
if(region.isKindOfClass(CLBeaconRegion)) {
locationManager!.startRangingBeaconsInRegion(self.beacon!)
}
}
func locationManager(manager: CLLocationManager, didExitRegion region: CLRegion) {
if(region.isKindOfClass(CLBeaconRegion)) {
locationManager!.stopRangingBeaconsInRegion(self.beacon!)
}
}
- Bereichsmanager für Positionsmanager
func locationManager(manager: CLLocationManager, didRangeBeacons beacons: [CLBeacon], inRegion region: CLBeaconRegion) {
print(beacons.first.major)
}
Scannen bestimmter Beacons
beacon = CLBeaconRegion(proximityUUID: <#NSUUID#>, major: <#CLBeaconMajorValue#>, identifier: <#String#>) // listening to all beacons with given UUID and major value
beacon = CLBeaconRegion(proximityUUID: <##NSUUID#>, major: <##CLBeaconMajorValue#>, minor: <##CLBeaconMinorValue#>, identifier: <##String#>) // listening to all beacons with given UUID and major and minor value
IBeacons in Reichweite
Zunächst müssen Sie die Autorisierung von Standortdiensten anfordern
let locationManager = CLLocationManager()
locationManager.delegate = self
locationManager.requestWhenInUseAuthorization()
// OR locationManager.requestAlwaysAuthorization()
Dann können Sie alle Informationen von didRangeBeacons
in didRangeBeacons
func locationManager(manager: CLLocationManager, didRangeBeacons beacons: [CLBeacon], inRegion region: CLBeaconRegion) {
for beacon in beacons {
print(beacon.major)
print(beacon.minor)
}
}
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow