We can check the status o f the bluetooth if it's turned on or 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
}
}
We can check the status o f the bluetooth if it's turned
onoroffShould be great to check that too with PermissionsKit