I want to convert an (at least I think) array of UInt8 values to Data.
Using Data(bytes: variable) does not work here.
Here's the type of the variable:
po type(of: obj.variable)
(Swift.UInt8, Swift.UInt8, Swift.UInt8, Swift.UInt8)
It seems that this isn't an array of UInt8 but what type is it and how can I convert it to a Data?
Thanks!
The type of
obj
is a tuple of fourUInt8
values.You can access elements of the tuple as follows:
As
Data
is effectively aCollection
of bytes, it can be initialized from a sequence ofUInt8
values.So the easiest solution would just be to create an
Array
from the elements of the tuple and initialize aData
value from it:This is however not the most general solution and only works when the tuple only contains
UInt8
values.A more general approach would be to convert the tuple to an
UnsafePointer
first and create aData
value from it: