1.导入头文件
#import <CoreBluetooth/CoreBluetooth.h>
2.创建一个CBCentralManager的实例。
3.实现CBCentralManagerDelegate
#pragma mark - CBCentralManager的代理方法
/**
* 状态发生改变的时候会执行该方法(蓝牙4.0没有打开变成打开状态就会调用该方法)
*/
- (void)centralManagerDidUpdateState:(CBCentralManager *)central
{
NSLog(@"====>%ld",(long)self.mgr.state);
// 获取当前设备的蓝牙状态
if (self.mgr.state == CBManagerStatePoweredOff)
{
}
}