With Swift I want to convert bytes from a uint8_t array to an integer.
"C" Example:
char bytes[2] = {0x01, 0x02};
NSData *data = [NSData dataWithBytes:bytes length:2];
NSLog(@"data: %@", data); // data: <0102>
uint16_t value2 = *(uint16_t *)data.bytes;
NSLog(@"value2: %i", value2); // value2: 513
Swift Attempt:
let bytes:[UInt8] = [0x01, 0x02]
println("bytes: (bytes)") // bytes: [1, 2]
let data = NSData(bytes: bytes, length: 2)
println("data: (data)") // data: <0102>
let integer1 = *data.bytes // This fails
let integer2 = *data.bytes as UInt16 // This fails
let dataBytePointer = UnsafePointer<UInt16>(data.bytes)
let integer3 = dataBytePointer as UInt16 // This fails
let integer4 = *dataBytePointer as UInt16 // This fails
let integer5 = *dataBytePointer // This fails
What is the correct syntax or code to create a UInt16 value from a UInt8 array in Swift?
I am interested in the NSData version and am looking for a solution that does not use a temp array.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…