Hi MobileTen,
Thank you for your reply.
I follow your method to add the following code in swift:
for value in 0..<5 {
let thing = output.largeData.assumingMemoryBound(to: UInt8.self).advanced(by: value).pointee
print(thing)
}
However, the output value of thing not the correctly.
Is anything I've missed or wrong setting?