Я не могу заполнить свой CGPath

Мне нужна помощь с заполнением моего пути. Я понятия не имею, куда поместить CGContextFillPath (path); , например. Я новичок в рисовании (и разработке iOS), и я действительно пробовал все в течение почти двух часов. Но я дошел до точки, когда мне просто нужно сдаться ... Надеюсь, вы сможете пролить свет на мою проблему. Я получаю следующую ошибку: недопустимый контекст

-(CGMutablePathRef) drawHexagon:(CGPoint)origin
    {
        //create mutable path
        CGMutablePathRef path = CGPathCreateMutable();

        CGPathMoveToPoint(path, nil, origin.x, origin.y);

        CGPoint newloc = CGPointMake(origin.x - 20, origin.y + 42);
        CGPathMoveToPoint(path, NULL, newloc.x, newloc.y);
        CGPathAddLineToPoint(path, NULL, newloc.x + 16,newloc.y + 38);
        CGPathAddLineToPoint(path, NULL, newloc.x + 49, newloc.y + 0);
        CGPathAddLineToPoint(path, NULL, newloc.x + 23,  newloc.y - 39);
        CGPathAddLineToPoint(path, NULL, newloc.x - 25,newloc.y - 40);
        CGPathAddLineToPoint(path, NULL, newloc.x -43, newloc.y + 0);
        CGPathCloseSubpath(path);
        CGContextAddPath(context, path);
        context = UIGraphicsGetCurrentContext();
        CGContextSaveGState(context);
        CGContextSetLineWidth(context, 2.0);
        CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
        CGContextAddPath(context, path);
        CGContextStrokePath(context);
        CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
        CGContextFillPath(path);



           return path;   

    }

    -(id) init
    {
        // always call "super" init
        // Apple recommends to re-assign "self" with the "super" return value
        if( (self=[super init])) {

           clickedHexagonsUpToNow = [[NSMutableArray alloc]init ];
            CGSize screenSize = [CCDirector sharedDirector].winSize;

            background = [CCSprite spriteWithFile:@"background.png"];
            background.anchorPoint= ccp(0,0);
            [self addChild:background z:-1 tag:0];

            hex1TouchArea = [self drawHexagon:ccp(82,120)];
            hex2TouchArea = [self drawHexagon:ccp(50,157)];
            hex3TouchArea = [self drawHexagon:ccp(220 ,196)];
            hex4TouchArea = [self drawHexagon:ccp(280,153)];
            hex5TouchArea = [self drawHexagon:ccp(84,118)];
            hex6TouchArea = [self drawHexagon:ccp(82,120)];
            hex7TouchArea = [self drawHexagon:ccp(82,120)];
            hex8TouchArea = [self drawHexagon:ccp(82,120)];
            hex9TouchArea = [self drawHexagon:ccp(82,120)];


             self.isTouchEnabled = YES;

            }
    return self;
}
5
задан the_critic 29 November 2011 в 15:10
поделиться