I want to store my CGPoint to the NSMutable Array, so , I have method like this:
[self.points addObject:CGPointMake(x, y)];
But I got the error
You can also do the following:
[myArray addObject:[NSValue valueWithCGPoint:MyCGPoint]];