-
StackOverflow 文档
-
core-bluetooth 教程
-
设置 bluetoooth 中央经理
-
使用选项声明和实例化 CBCentralManager
迅速:
var centralManager:CBCentralManager!
centralManager = CBCentralManager(delegate: self, queue: nil, options: [CBCentralManagerOptionRestoreIdentifierKey : "com.companyname.appname.central"])
目标 C:
@property (nonatomic, strong) CBCentralManager *centralManager;
self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil options:@{CBCentralManagerOptionRestoreIdentifierKey : @"com.companyname.appname.central"}];