My understanding is that a UInt64 can be any value from: 0 to 18446744073709551615
I need to save a UInt64 identifier to CoreData, however the values I see are:
I initially tried Integer 64 but now I am understanding that has a range of: -9223372036854775808 to 9223372036854775807
Do developers usually store an UInt64 as a String and do conversions between the two types? Is this the best practice?
