i want to take the array of CALAYER:-
CALayer *layer3 = [CALayer layer];
[layer3 setBounds:CGRectMake(0.0f, 0.0f, 10.0f, 10.0f)];
[layer3 setCornerRadius:5.0f];
[layer3 setMasksToBounds:YES];
[layer3 setBackgroundColor:[[UIColor redColor] CGColor]];
// Center the layer in the view.
[layer3 setPosition:CGPointMake(x,y)];
[[self.Image layer3] addSublayer:layer3];
By the above way i had made one point in the image. But i want to draw the 10 point in the image. I want to take the arrary of CALAyer. Please help me .How can i take the array of CALAYER.
Thanks in advance