Re: Encoding NSUInteger
Re: Encoding NSUInteger
- Subject: Re: Encoding NSUInteger
- From: "Sean McBride" <email@hidden>
- Date: Mon, 7 Jan 2008 12:58:17 -0500
- Organization: Rogue Research
On 1/6/08 9:34 PM, Hans van der Meer said:
>Making the transition to code that will be prepared for 64 bit may the
>need arise, I changed (with the tops script) the integers to the
>recommended NSInteger's and NSUInteger's.
>
>Now in NSCoder I do find an encodeInteger:forKey: and
>decodeInteger:forKey: for NSInteger, but the corresponding methods for
>NSUInteger are absent.
>In my code I have NSUInteger's to encode/decode and I would like to do
>this in the correct manner.
>
>Can I use the NSInteger coding methods directly with the NSUInteger's?
>Or do I need some casting or other magic to get all the bits straight?
NSCoder also has an:
- (void)encodeInt:(int)intv forKey:(NSString *)key;
but no 'unsigned int' version. I guess you'll just have to cast. Or
create an NSNumber and use that.
--
____________________________________________________________
Sean McBride, B. Eng email@hidden
Rogue Research www.rogue-research.com
Mac Software Developer Montréal, Québec, Canada
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden