In my swift app, I really need to store a UInt32 value and retrieve it using NSCoder. The issue is, there are methods for signed integers :
coder.decodeInteger()
coder.decodeInt32()
coder.decodeInt64()
but not for unsigned integers. Also, casting an Int32 of negative value in an UInt32 does not seem to work.
Am I missing some point?