Я пытаюсь использовать цикл для построения переменного числа CGMutablePathRef, чтобы нарисовать переменное количество заполненных клиньев на круге.По какой-то причине, однако, в конце моего цикла мой массив возвращается только с одним объектом.Вот метод, который я использую для создания массива:
+ (NSMutableArray *)pathForCircleWithRect:(CGRect)rect numOfWedges:(NSUInteger)num
{
CGPoint center = CGPointMake(CGRectGetMidX(rect), CGRectGetMidY(rect));
CGFloat radius = rect.size.width / 2;
CGFloat angle = RADIANS(360) / num;
CGFloat startAngle = 0;
CGFloat endAngle = startAngle + angle;
NSMutableArray *paths = [NSMutableArray array];
for (int x = 0; x < num; x++);
{
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint(path, NULL, center.x, center.y);
CGPathAddArc(path, NULL, center.x, center.y, radius, startAngle, endAngle, 0);
CGPathAddLineToPoint(path, NULL, center.x, center.y);
[paths addObject:(id)path];
startAngle = endAngle;
endAngle = startAngle + angle;
}
return paths;
}
Редактировать Новая попытка с использованием UIBezierPath's:
+ (NSMutableArray *)pathForCircleWithRect:(CGRect)rect numOfWedges:(NSUInteger)num
{
CGPoint center = CGPointMake(CGRectGetMidX(rect), CGRectGetMidY(rect));
CGFloat radius = rect.size.width / 2;
CGFloat angle = RADIANS(360) / num;
CGFloat startAngle = 0;
CGFloat endAngle = startAngle + angle;
NSMutableArray *paths = [NSMutableArray array];
for (int x = 0; x < num; x++);
{
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint(path, NULL, center.x, center.y);
CGPathAddArc(path, NULL, center.x, center.y, radius, startAngle, endAngle, 0);
CGPathAddLineToPoint(path, NULL, center.x, center.y);
[paths addObject:[UIBezierPath bezierPathWithCGPath:path]];
startAngle = endAngle;
endAngle = startAngle + angle;
}
return paths;
}
Код, который вызывает эту функцию:
- (void)drawRect:(CGRect)rect
{
int num = 18;
NSMutableArray *paths = [WheelView pathForCircleWithRect:rect numOfWedges:num];
NSMutableArray *colors = [WheelView colorsForCircleWithNumOfWedges:num];
CGContextRef context = UIGraphicsGetCurrentContext();
for (int x = 0; x < num; x++)
{
CGContextSetFillColorWithColor(context, (CGColorRef)[colors objectAtIndex:x]);
CGContextSaveGState(context);
CGMutablePathRef wedgePath = (CGMutablePathRef)[paths objectAtIndex:x];
CGContextAddPath(context, wedgePath);
CGContextDrawPath(context, kCGPathFill);
//CGContextClip(context);
CGContextRestoreGState(context);
}
}