iOS iBeacon开发

2019-06-26  本文已影响0人  芸芸之尔

应用场景

最近有个项目需求是,在展会的各个商家展位上配置iBeacon设备,当用户(手机上安装公司APP)进入ibeacon覆盖的商家展位区域时,向后台上报该用户进出展位的时间,以便统计用户在各个展位的驻停时间,进而推算出用户在展会现场的大概动线及各个商家展位的人流量。

什么是iBeacon

API介绍

虽然iBeacon的功能基于蓝牙功能的,但其却是一种定位技术,所以Apple把iBeacon功能集成到了CoreLocation框架里面了,所以要在使用类中导入CoreLocation。

1 首先介绍一下CLBeacon,iBeacon在CoreLocation框架中抽象为CLBeacon类,这个类有6个属性:

注:proximityUUIDmajorminor 这个三个属性组成iBeacon的唯一标识。

2 其次介绍一下CLBeaconRegion,如果我们想扫描到周围的iBeacon设备,首先要知道周围ibeacon设备的proximityUUID,major,minor,然后要实例化一个CLBeaconRegion类来定义iBeacon的区域。这个类有三种实例化方法:

//仅使用proximityUUID来初始化区域,major,minor值将作为通配符。只要是区域内的iBeacon的proximityUUID与此proximityUUID相同,不管major, minor是什么值,都能被检测到。
public init(proximityUUID: UUID, identifier: String)
//使用proximityUUID和major来初始化区域,minor值将作为通配符。区域内的iBeacon的proximityUUID和major与此proximityUUID和major相同时,不论minor为何值,都能被检测到。
public init(proximityUUID: UUID, major: CLBeaconMajorValue, identifier: String)
//使用proximityUUID, major, minor来初始化,只能检测到区域内相同proximityUUID, major, minor的iBeacon设备。
public init(proximityUUID: UUID, major: CLBeaconMajorValue, minor: CLBeaconMinorValue, identifier: String)

// 周围有多个iBeacon设备的话就根据iBeacon设备的参数信息逐个CLBeaconRegion实例,这里只初始化一个来说明
let beaconRegion = CLBeaconRegion.init(proximityUUID: UUID.init(uuidString: "uuid")!, major: CLBeaconMajorValue.init(2), minor: CLBeaconMinorValue.init(7), identifier: "iden")

3 实例化完iBeacon设备区域之后,接下来就需要创建CLLocationManager管理对象,实现其delegate代理,并实现CLLocationManagerDelegate代理方法,来监控我们的iBeacon设备。CLLocationManager有两种iBeacon的监控方式:

iBeacon具体的开发

权限请求

info.plist中添加NSLocationAlwaysAndWhenInUseUsageDescription,NSLocationWhenInUseUsageDescriptionNSLocationAlwaysUsageDescription,请求地理位置权限。

开启Background Modes

image.png

具体代码

1 初始化CLLocationManager,注册iBeaconRegion区域

 // 监听IBeacon的locationManager
var locationManager = {() ->  CLLocationManager in
        let manager = CLLocationManager.init()
        return manager
    }()
 // 注册iBeaconRegion数组(可能用时监测很多个IBeacon区域)    
var beaconRegionArr: [CLBeaconRegion] = []
func setupiBeacons() {
         locationManager.delegate = self
       
        let beaconRegion1 = CLBeaconRegion.init(proximityUUID: UUID.init(uuidString: uuidStr)!, major: CLBeaconMajorValue.init(1024), minor: CLBeaconMinorValue.init(1), identifier: "beacon1")
        beaconRegion1.notifyOnEntry = true  // 进入iBeaconRegion区域时,触发代理方法
        beaconRegion1.notifyOnExit = true   // 离开iBeaconRegion区域时,触发代理方法
        beaconRegion1.notifyEntryStateOnDisplay = true
        beaconRegionArr.append(beaconRegion1)
    }

注意:locationManager的代理必须要设置为AppDelegate,因为苹果规定的这一机制,如果app处于关闭的状态,进入到了监控的区域,它只能在AppDelegate类中响应。如果我们在其他页面添加了监视区域,并将这些响应的代理方法都在写在了该页面,当程序处于关闭状态,只要你不打开App进入到这个页面,那么这些代理方法是不会被执行到的。(亲自踩过的坑)

2 开始监控IBeaconRegion区域

 func startMonitorBeacons() {      
        //检测设备是否支持IBeacon监控功能 
        let availbleMonitor = CLLocationManager.isMonitoringAvailable(for: CLBeaconRegion.self)
        //获取当前APP定位状态
        let status = CLLocationManager.authorizationStatus()
        if availbleMonitor {
            if status == .authorizedAlways || status == .authorizedWhenInUse {
                //开始监听所有的beaconRegion
                for iBeaconRegion in beaconRegionArr {
                    //开始监测
                    self.locationManager.startMonitoring(for: iBeaconRegion)
                    self.locationManager.startRangingBeacons(in: iBeaconRegion)
                }
            }else if status == .notDetermined{
                self.locationManager.requestAlwaysAuthorization()
            }
        }else{
            //设备不支持
        }
    }

3 实现CLLocationManagerDelegate代理方法

上一篇 下一篇

猜你喜欢

热点阅读