如何从CBC特征中获得准确的价值?

时间:2016-10-26 18:05:14

标签: ios bluetooth-lowenergy core-bluetooth

<CBCharacteristic: 0x156d48cf0, UUID = BLevel, properties = 0x18, value = <32353732 380d0a>, notifying = YES>

我想提取价值领域的内容。

NSData *data = c.value; // c is of type CBCharacteristic

但我不知道它是哪种价值?

1 个答案:

答案 0 :(得分:2)

您可以使用

NSData转换为NSString
NSString *str = [[NSString alloc] initWithData:c.value encoding:NSUTF8StringEncoding];