Open CavalcanteLeo opened 2 years ago
We can check the status o f the bluetooth if it's turned on or off
on
off
Should be great to check that too with PermissionsKit
var manager:CBCentralManager! viewDidLoad() { // Or init() manager = CBCentralManager() manager.delegate = self } func centralManagerDidUpdateState(_ central: CBCentralManager) { switch central.state { case .poweredOn: break case .poweredOff: print("Bluetooth is Off.") break case .resetting: break case .unauthorized: break case .unsupported: break case .unknown: break default: break } }
Hello! So idea add property about power on and off, right?
yep
I can submit a PR this weekend if it helps
I can add it myself, thanks for idea. Soon release new version
We can check the status o f the bluetooth if it's turned
on
oroff
Should be great to check that too with PermissionsKit