标签: ios swift
我正在尝试使用Swift 2从字节中提取最重要的半字节。
示例:
0x50 -> 5, 0x6A -> 6, etc.
我该怎么做?
答案 0 :(得分:1)
let value = 0x6A let nibble = value >> 4