Quick question, when I'm using encoders and decoders and I have a line like the following...
//.H File
@property uint64 docGroup; //** declared in interface
//.M file
[aCoder encodeInt64:_docGroup forKey:@"docGroup"];
Will it properly store all '64' bits since I'm using an unsigned int64? I'm afraid it will leave the last bit behind. I'm curious what the behavior is in this case. Anyone know?
I could not find a function encodeUnsignedInt64, if there is one let me know.