I'm currently developing an app where i need the string value "0xE3413F" to be converted to a UInt32 with same value, "0xE3413F". The reason for this is that I'm using the value in a function that requires an UInt32 value. I have saved the string in a .plist.
However, the only way I have found to do this is to first convert the string to Int and the to a UInt32, but this doesn't give me the original value.
Is there a way of converting a string directly to UInt32 or is there an other way to save UInt32 in a .plist?