0

I'm having trouble identifying what a peripheral is which would normally lead me to be able to NSLog() it properly.

- (void)centralManager:(CBCentralManager *)central didRetrievePeripherals:(NSArray *)peripherals {
  NSLog(@"discovered peripherals: %@", howToListPeriphalsForDebugging);
}

Thanks

tarabyte
  • 17,837
  • 15
  • 76
  • 117

1 Answers1

0

Try changing:

NSLog(@"discovered peripherals: %@", howToListPeriphalsForDebugging);

To:

NSLog(@"discovered peripherals: %@", peripherals);
Henry F
  • 4,960
  • 11
  • 55
  • 98