Obj-C... "Incompatible types in initialization" error

iphone, objective-c, quartz-2d

Solution

`CGPointMake` returns a struct, not a pointer to a struct. So the correct code is:

CGPoint tp_1 = CGPointMake(160, 240);

Problem

My code: ``` CGPoint *tp_1 = CGPointMake(160, 240); ``` gives an "Incompatible types in initialization" error... why is this??

Original source