On Sep 29, 2010, at 2:41 AM, Markus Spoettl wrote:
> The the Mac code is 32bit and runs on Leopard and Snow Leopard.
>
> - (void)encodeDouble:(double)value forKey:(NSString *)key withCoder:(NSCoder
> *)encoder
> {
>NSSwappedDouble sd = NSSwapHostDoubleToLittle(value);
>[encoder encodeByte
Hello,
I have a need to manually encode and decode double values archived using a
NSKeyedArchiver. I can't use encodeDouble/decodeDouble in this case because of
truly terrible performance in some previous releases of Mac OS (not sure if
that's still the case in 10.6).
This worked well so fa