3

如何在用户仍在进行拖动或触摸时用 2 个手指绘制/绘制一条直线,并且这条线是可见的?我已经尝试过使用 coregraphics 进行简单的绘画,但这对我来说似乎有点复杂。

4

1 回答 1

3

就贾斯汀而言,只需处理touchesBeganand touchesMoved

因此,如果您子类UIView化,CoreGraphics 实现可能如下所示:

@interface CustomView ()

@property (nonatomic, strong) NSMutableArray *paths;
@property (nonatomic, strong) UIBezierPath *currentPath;

@end

@implementation CustomView

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) {
        [self setMultipleTouchEnabled:YES];
    }
    return self;
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    if (!self.currentPath)
    {
        if (!self.paths)
            self.paths = [NSMutableArray array];

        self.currentPath = [UIBezierPath bezierPath];
        self.currentPath.lineWidth = 3.0;

        [self.paths addObject:self.currentPath];

        [self touchesMoved:touches withEvent:event];
    }
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    if ([touches count] != 2)
        return;

    [self.currentPath removeAllPoints];

    __block NSInteger i = 0;
    [touches enumerateObjectsUsingBlock:^(UITouch *touch, BOOL *stop) {
        CGPoint location = [touch locationInView:self];

        if (i++ == 0)
            [self.currentPath moveToPoint:location];
        else
            [self.currentPath addLineToPoint:location];
    }];

    [self setNeedsDisplay];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    self.currentPath = nil;
}

- (void)drawRect:(CGRect)rect
{
    [[UIColor redColor] setStroke];
    [[UIColor clearColor] setFill];

    for (UIBezierPath *path in self.paths)
    {
        [path stroke];
    }
}

- (void)reset
{
    self.paths = nil;
    [self setNeedsDisplay];
}

@end

或者,您也可以使用 Quartz 2D 并定义自己的CAShapeLayer对象,然后您的视图子类或视图控制器可以执行类似的操作(不用说,这是视图控制器实现;视图实现应该很明显):

#import "ViewController.h"
#import <QuartzCore/QuartzCore.h>

@interface ViewController ()

@property (nonatomic, weak) CAShapeLayer *currentLayer;
@property (nonatomic, strong) UIBezierPath *currentPath;

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.view setMultipleTouchEnabled:YES];
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    if (!self.currentLayer)
    {
        CAShapeLayer *layer = [CAShapeLayer layer];
        layer.lineWidth = 3.0;
        layer.strokeColor = [[UIColor redColor] CGColor];
        layer.fillColor = [[UIColor clearColor] CGColor];
        [self.view.layer addSublayer:layer];
        self.currentLayer = layer;

        self.currentPath = [UIBezierPath bezierPath];

        [self touchesMoved:touches withEvent:event];
    }
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    if ([touches count] != 2)
        return;

    [self.currentPath removeAllPoints];

    __block NSInteger i = 0;
    [touches enumerateObjectsUsingBlock:^(UITouch *touch, BOOL *stop) {
        CGPoint location = [touch locationInView:self.view];

        if (i++ == 0)
            [self.currentPath moveToPoint:location];
        else
            [self.currentPath addLineToPoint:location];
    }];

    self.currentLayer.path = [self.currentPath CGPath];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    self.currentPath = nil;
    self.currentLayer = nil;
}

- (IBAction)didTouchUpInsideClearButton:(id)sender
{
    for (NSInteger i = [self.view.layer.sublayers count] - 1; i >= 0; i--)
    {
        if ([self.view.layer.sublayers[i] isKindOfClass:[CAShapeLayer class]])
            [self.view.layer.sublayers[i] removeFromSuperlayer];
    }
}

@end

对于后一种方法,您需要将 QuartzCore.framework 添加到您的项目中。

于 2013-04-22T06:45:27.153 回答