总体概述
CBCentralManagerDelegate 协议中定义了一系列方法列表,这些方法是委托对象必须要实现的方法(也有可选择的),当中央管理器的相应变化就会调用委托对象中实现的相应方法。
Monitoring Connections with Peripherals 监测外设的连接
– centralManager:didConnectPeripheral:
- - (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
当中央管理器成功连接一个外设时会唤醒该方法
- 当connectPeripheral:options:调用成功时,会调用该方法,你需要完善该方法,设置该外设代理,发现外设的服务。
- 例如:- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
- printf("connection to perpherial with uuid : %s successfull ",[self UUIDToString:peripheral.UUID]);
- self.activePeripheral = peripheral; //把该外设标为活动设备
- [self.activePerpheral discoverServices:nil]; //查找该设备的服务 (这里是方法调用)
- }
– centralManager:didDisconnectPeripheral:error:
- 当
connectPeripheral:options:方法连接外设失败时会调用该方法。
– centralManager:didFailToConnectPeripheral:error:
Discovering and Retrieving Peripherals
– centralManager:didDiscoverPeripheral:advertisementData:RSSI:
– centralManager:didRetrieveConnectedPeripherals:
– centralManager:didRetrievePeripherals:
Monitoring Changes to the Central Manager’s State