2

元のCGPointが保存されていない場合、保存されているCGPathをベジェパスとして再描画するにはどうすればよいですか?

これはコードですが、機能しません(パスはベジェモードではなく標準モードで再描画されます)。

CGMutablePathRef UpathFREEHAND = CGPathCreateMutable();
CGPoint firstPointFH = [[pointArray objectAtIndex:0] CGPointValue];
CGPathMoveToPoint(UpathFREEHAND, NULL, firstPointFH.x, firstPointFH.y);

for (int i = 0; i < [pointArray count]; i++)
    {
        CGPathAddLineToPoint(UpathFREEHAND, NULL, [[pointArray objectAtIndex:i] CGPointValue].x, 
        [[pointArray objectAtIndex:i] CGPointValue].y);
    }

CGMutablePathRef _TempPathForUndo = UpathFREEHAND;

//Add PATH object to array
[UPath addObject:CFBridgingRelease(_TempPathForUndo)];

//Load PATH object from array
_TTempPathForUndo = (__bridge CGMutablePathRef)([UPath objectAtIndex:i]);

// Now create the UIBezierPath object.
UIBezierPath *bp;
bp = [UIBezierPath bezierPath];
bp.CGPath = _TTempPathForUndo;

CGContextAddPath(context, bp.CGPath);
//Color, Brush Size parameters, Line cap parameters..
CGContextStrokePath(context);
4

2 に答える 2

3

から次のメソッドを使用できますUIBezierPath

+ (UIBezierPath *)bezierPathWithCGPath:(CGPathRef)CGPath

a の再利用CGPathは有効です。でクリックしたときに再描画を強制するために、 a を追加TestViewして aUIViewControllerをリンクするこの例を確認してください。UIButton[_testView setNeedsDisplay]

// TestView.h

#import <UIKit/UIKit.h>

@interface TestView : UIView {

    CGMutablePathRef _path;
    BOOL _nextDraws;
}

@end

// TestView.m

#import "TestView.h"

@implementation TestView

- (void)drawRect:(CGRect)rect {

    BOOL firstDraw = !_nextDraws;
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    if (firstDraw) {
        NSLog(@"first draw");

        _path = CGPathCreateMutable();
        CGPathMoveToPoint(_path, NULL, 0, 0);
        CGPathAddLineToPoint(_path, NULL, CGRectGetMaxX(rect), CGRectGetMaxY(rect));
        CGPathCloseSubpath(_path);
        CGContextAddPath(ctx, _path);
        CGContextSetStrokeColorWithColor(ctx,[UIColor whiteColor].CGColor);
        CGContextStrokePath(ctx);

        _nextDraws = YES;
    }
    else {
        NSLog(@"next draws");

        CGContextRef ctx = UIGraphicsGetCurrentContext();
        CGContextClearRect(ctx, rect);
        UIBezierPath * bezierPath = [UIBezierPath bezierPathWithCGPath:_path];
        CGContextAddPath(ctx, bezierPath.CGPath);
        CGContextSetStrokeColorWithColor(ctx,[UIColor whiteColor].CGColor);
        CGContextStrokePath(ctx);
    }
}

- (void)dealloc {
    CGPathRelease(_path);
    [super dealloc];
}

@end
于 2012-10-21T09:47:13.610 に答える