web-dev-qa-db-ja.com

iOS CoreBluetooth:centralManager:didConnectPeripheral / didFailToConnectPeripheral:呼び出されない

私はこの問題から髪を引っ張っています。 BLEデバイスに接続するをしようとしていますが、以下のコードで間違ったことを確認できません。

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    _cm = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
}

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

+ (NSString*)UUIDString:(CFUUIDRef)uuid {
    CFStringRef string = CFUUIDCreateString(NULL, uuid);
    return (__bridge_transfer NSString*)string;
}

- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
    if (central.state == CBCentralManagerStatePoweredOn) {
        [self scanForPeripherals];
    }
}

- (void)centralManager:(CBCentralManager *)central
 didDiscoverPeripheral:(CBPeripheral *)peripheral
     advertisementData:(NSDictionary *)advertisementData
                  RSSI:(NSNumber *)RSSI {
//    NSLog(@"Received peripheral : \n%@", peripheral);
//    NSLog(@"Adv data : %@", advertisementData);

    [peripheral setDelegate:self];
    [central connectPeripheral:peripheral options:nil];
    [peripheral readRSSI];
}

- (int)scanForPeripherals {
    NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
                             [NSNumber numberWithBool:NO], CBCentralManagerScanOptionAllowDuplicatesKey,
                             nil];

    [_cm scanForPeripheralsWithServices:nil options:options];
    return 0;
}

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
    NSLog(@"didConnectPeripheral");
}

- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error {
    NSLog(@"didDisconnectPeripheral");
}

- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error {
    NSLog(@"failed to connect");
}

- (void)peripheral:(CBPeripheral *)peripheral didReadRSSI:(NSNumber *)RSSI error:(NSError *)error {
    NSLog(@"didReadRSSI");
}

これらのデバイスは自分のものではありません。私はその近接UUIDを知りませんが、私の知る限り、CoreBluetooth経由での接続には必要ありません。

すべてのデバイスはdidDiscoverPeripheral:で検出され、セレクターで接続しようとしました。しかし、その後は何も起こりません。

didDiscoverPeripheral:を呼び出したときに、ペアリングパスワードリクエストのダイアログが表示されますか?その場合、ダイアログが表示されないのはなぜですか?

Appleドキュメントから、デバイスに接続しようとした後、didConnectPeripheralまたはdidFailToConnectPeripherのいずれかに呼び出されるはずであると明確に述べられていましたが、何も得られませんでした。

何かご意見は?今から一週間近く頑張ってます。おかげで、すべての助けに感謝します。

22
Mysteltainn

peripheralに配信されるdidDiscoverPeripheralオブジェクトを何らかの方法で保持しない場合、このデリゲートメソッドが終了すると解放され、接続を取得できません。

発見された周辺機器を追跡するプロパティを追加することをお勧めします

@property (strong,nonatomic) NSMutableArray *peripherals;

これをviewDidLoadまたはinitで初期化します

self.peripherals=[NSMutableArray new];

そして、ペリフェラルをdidDiscoverPeripheralに追加します

-(void) centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
    NSLog(@"Discovered peripheral %@",peripheral.identifier.UUIDString);
    [self.peripherals addObject:peripheral];
    [central connectPeripheral:peripheral options:nil];
}
61
Paulw11
var peripherals = [CBPeripheral]()

func centralManager(central: CBCentralManager, didDiscoverPeripheral peripheral: CBPeripheral, advertisementData: [String : AnyObject], RSSI: NSNumber) {
    peripherals.append(peripheral)
    bleManager.connectPeripheral(peripheral, options: nil)
}

これはSwiftバージョンです。

3
Antony Wong