We can have an NSMutableArray
object, and add objects to it.
But CGPoint
is not an object... are there Point objects suitable to be added to an NSMutableArray object?
I see some code using NSStringFromCGPoint
to create an NSString
object so that it can be added to the array, and later use CGPointFromString
to get the CGPoint
back... but that just looks too much of a hack...