I want to get this structure
CGPoint addLines1[] = { CGPointMake(30.0, 150.0), CGPointMake(41.67, 145.19), CGPointMake(53.33, 103.25), CGPointMak
I solve my problem doing the next:
NSMutableArray *myArray = [[NSMutableArray alloc] init]; [myArray addObject:[NSValue valueWithCGPoint:myPoint]];
Thanks to michael-jensen for the solution!