-encodeWithCoder:
[encoder encodeFloat:myPoint.x forKey:@"myPoint.x"];
[encoder encodeFloat:myPoint.y forKey:@"myPoint.y"];

-initWithCoder:
myPoint = CGPointMake([decoder decodeFloatForKey:@"myPoint.x"], [decoder decodeFloatForKey:@"myPoint.y"]);

HTH,

Dave
On Jan 15, 2009, at 12:38 PM, Mike Chambers wrote:

I am using NSCoder to encode my class. This is working fine, but I am
having trouble figuring out how to encode CGPoint. I have searched
online, but have found some conflicting information, and as I am
relatively new to Objective-C, I am having trouble figuring it out.

Does anyone have a simple example of how to encode and decode a
CGPoint struct using NSCoder?

thanks...

mike
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/davedelong%40me.com

This email sent to davedel...@me.com

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to