I have about 50 CGPoint objects that describe something like a \"path\", and I want to add them to an NSArray. It\'s going to be a method that will just return the correspon
You can also write this in a minimal form of:
CGPoint myArray[] = { CGPointMake(5.5, 6.6), CGPointMake(7.7, 8.8) }; CGPoint p2 = myArray[1];