如何转换值:可选(1个字节)到Swift 4中的Int数组?

时间:2017-11-23 03:44:46

标签: ios swift

我正在尝试使用以下线路获得蓝牙低功耗设备的电池寿命:

print("characteristic uuid: \(characteristic.uuid.uuidString), value: \(String(describing: characteristic.value))")

打印哪些:

characteristic uuid: 2A19, value: Optional(1 bytes)

我尝试将其转换为Int:

let bLevel = [UInt8](characteristic.value!)

哪个给[int]但是我确定它返回错误的数字。

0 个答案:

没有答案