Objective-C Sprite Class (iPhone SDK) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T17:42:27Z http://stackoverflow.com/feeds/question/1007189 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1007189/objective-c-sprite-class-iphone-sdk 1 Objective-C Sprite Class (iPhone SDK) Kith 2009-06-17T13:55:25Z 2009-06-17T14:02:26Z <p>Okay, just for starters, I am very new to Objective-C, (C in general). I am not new to programming, and I've found the transition seamless so far, until now. I'm trying to implement a Sprite class I found online in order to develop a game on the iPhone, but I'm getting many errors. For example...</p> <pre><code>size = CGSizeMake([image size].width , [image size].height); </code></pre> <p>Where size is a CGSize object, synthesized and image is a UIImage object, synthesized. They are both declared in the Sprite.h file. The error I'm getting is "incompatible types in this assignment". Any help would be greatly appreciated. I feel as though the error is something simple, like an #include or something because every error has to do with a CoreGraphics function (CGRectMake, CGSizeMake, CGRectIntersectRect, etc.). I didn't know if I should post the entire class here, but I'll be happy to if requested to. </p> http://stackoverflow.com/questions/1007189/objective-c-sprite-class-iphone-sdk/1007219#1007219 2 Answer by NilObject for Objective-C Sprite Class (iPhone SDK) NilObject 2009-06-17T14:02:26Z 2009-06-17T14:02:26Z <p>When you say "size" is a CGSize <em>object</em>, I think you have a misunderstanding. CGSize is a regular C structure, and CGSizeMake returns a "CGSize" not a "CGSize *". My guess is that "size" is declared as "CGSize *" because you thought it was an object. Try removing the *.</p>