我想在imageview上标记一些东西,并且必须存储在数据库中,而当我从数据库中检索它时,我必须在imageview上显示相同的坐标ta。

最佳答案

您在情节提要(或代码)中创建UIImageView,并在viewController中创建fowling属性:

@property (strong, nonatomic) UITapGestureRecognizer *tapGesture;


接下来,在viewDidLoad中初始化tapGesture:

self.tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTapGesture:)];

self.tapGesture.delegate = self;

[self.view addGestureRecognizer:self.tapGesture];


接下来,创建用于点击的处理程序:

- (void)handleSingleTapGesture:(UITapGestureRecognizer *)tapGestureRecognizer {

    CGPoint point = [tapGestureRecognizer locationInView:self.imageView];
    float squareSize = 10;

    UIGraphicsBeginImageContextWithOptions(self.imageView.frame.size, YES, 0);

    [self.imageView.image drawInRect:CGRectMake(0, 0, self.imageView.frame.size.width, self.imageView.frame.size.height)];

    CGContextMoveToPoint(UIGraphicsGetCurrentContext(), point.x-squareSize, point.y - squareSize);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), point.x+squareSize, point.y-squareSize);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), point.x+squareSize, point.y+squareSize);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), point.x-squareSize, point.y+squareSize);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), point.x-squareSize, point.y-squareSize);
    CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
    CGContextSetLineWidth(UIGraphicsGetCurrentContext(), 1);
    CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), 0,0,0,1);
    CGContextSetBlendMode(UIGraphicsGetCurrentContext(),kCGBlendModeNormal);

    CGContextStrokePath(UIGraphicsGetCurrentContext());
    self.imageView.image = UIGraphicsGetImageFromCurrentImageContext();
    [self.imageView setAlpha:1.0];
    UIGraphicsEndImageContext();

}


此代码在imageView上绘制一个正方形。现在,您可以将point保存在数据库中,并在需要显示图像时绘制正方形标记。

希望对您有所帮助。

10-07 13:15