iOS中提供了4個框架用于實現(xiàn)藍牙連接
GameKit.framework(用法簡單)
只能用于iOS設(shè)備之間的連接读处,多用于游戲(比如五子棋對戰(zhàn)),從iOS7開始過期MultipeerConnectivity.framework
只能用于iOS設(shè)備之間的連接锡搜,從iOS7開始引入ExternalAccessory.framework
可用于第三方藍牙設(shè)備交互,但是藍牙設(shè)備必須經(jīng)過蘋果MFi認證(國內(nèi)較少)CoreBluetooth.framework(時下熱門)
可用于第三方藍牙設(shè)備交互,必須要支持藍牙4.0
硬件至少是4s布隔,系統(tǒng)至少是iOS6
藍牙4.0以低功耗著稱,一般也叫BLE(BluetoothLowEnergy)
目前應(yīng)用比較多的案例:運動手壞稼虎、嵌入式設(shè)備衅檀、智能家居
實現(xiàn)步驟
- 導(dǎo)入框架 CoreBluetooth.framework
- 建立中央管理者
- 掃描周邊設(shè)備
- 鏈接掃描到的設(shè)備
- 掃描服務(wù)
- 掃描特征
- 根據(jù)需求進行數(shù)據(jù)的一個處理
代碼實現(xiàn)
#import "ViewController.h"
#import <CoreBluetooth/CoreBluetooth.h>
@interface ViewController () <CBCentralManagerDelegate, CBPeripheralDelegate>
@property (strong, nonatomic) CBCentralManager *centralManager; // 中央管理者
@property (strong, nonatomic) NSMutableArray *peripheralArray;; // 掃描到的外設(shè)
@end
@implementation ViewController
- (NSMutableArray *)peripheralArray {
if (_peripheralArray == nil) {
_peripheralArray = [NSMutableArray array];
}
return _peripheralArray;
}
- (void)viewDidLoad {
[super viewDidLoad];
// 1.建立中央管理者
// queue:傳空,代表的就是在主隊列
self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
//2.掃描周邊設(shè)備
// Services:服務(wù)的UUID,是一個數(shù)據(jù).如果傳nil,默認就會掃描全部所有的服務(wù)
[self.centralManager scanForPeripheralsWithServices:nil options:nil];
}
#pragma mark - CBCentralManager代理方法
- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
NSLog(@"state: %ld",(long)central.state);
}
/**
當發(fā)現(xiàn)外圍設(shè)備時,會調(diào)用這個方法
@param central 控制中心
@param peripheral 外圍設(shè)備
@param advertisementData 相關(guān)數(shù)據(jù)
@param RSSI 信號的強度
*/
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *, id> *)advertisementData RSSI:(NSNumber *)RSSI {
// 3.記錄掃描到的設(shè)備
if (![self.peripheralArray containsObject:peripheral]) {
[self.peripheralArray addObject:peripheral];
}
// 偽步驟.用一個列表顯示咋們檢測到的外設(shè)備.
// 4.鏈接掃描到的設(shè)備
[self.centralManager connectPeripheral:peripheral options:nil];
// 5.設(shè)置外圍設(shè)備的一個代理
peripheral.delegate = self;
}
#pragma mark - 連接到設(shè)備之后,會調(diào)這方法
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
// 6.掃描服務(wù)
[peripheral discoverServices:nil];
}
#pragma mark - 外設(shè)的代理方法.當發(fā)現(xiàn)到讀物的時候會調(diào)用
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error {
// 7. 獲取制定的服務(wù),根據(jù)這個服務(wù)來查找特征
//services:外設(shè)的所有服務(wù),會保存在一個servicse中
for (CBService *service in peripheral.services) {
if ([service.UUID.UUIDString isEqualToString:@"123"]) {
// UUID一直的話,就開始掃描
[peripheral discoverCharacteristics:nil forService:service];
}
}
}
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(nullable NSError *)error {
// 8.獲取制定特征
for (CBCharacteristic *characteristic in service.characteristics) {
if ([characteristic.UUID.UUIDString isEqualToString:@"789"]) {
// 9.根據(jù)需求進行數(shù)據(jù)的一個處理
// 如果獲取到了指定的特征,就可以進行數(shù)據(jù)交換了
[peripheral readValueForCharacteristic:characteristic];
}
}
}
#pragma mark - 斷開
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
// 10.最后斷開連接
[self.centralManager stopScan];
}