Suppose I have two instances of CBCentralManager:
let manager1 = CBCentralManager(delegate: delegate1, queue: nil)
let manager2 = CBCentralManager(delegate: delegate2, queue: nil)
If I scan for peripherals using manager1, can I take the CBPeripheral that it gives me and connect to it with manager2?
Frank