仅在触摸具有颜色的部件时拖动对象或图像视图

时间:2014-04-01 08:03:35

标签: ios objective-c xcode uigesturerecognizer

我想知道只有当我触摸有颜色的部分时才能实现可拖动对象。如果我有一个带有大量透明填充的imageView,我希望用户只能在触摸图像时移动它,而不是在他触摸图像视图中的任何位置时移动它。

我正在为对象添加手势识别器:

UIPanGestureRecognizer *panGestureReconizer = [[UIPanGestureRecognizer alloc]      initWithTarget:self action:@selector(dragObjectWasMoved:)];

1 个答案:

答案 0 :(得分:1)

您可以使用以下方法创建UIView或UIImageView的类别

-(UIColor *)colorOfPoint:(CGPoint)point
{
    unsigned char pixel[4] = {0};
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    CGContextRef context = CGBitmapContextCreate(pixel, 1, 1, 8, 4, colorSpace, kCGImageAlphaPremultipliedLast);

    CGContextTranslateCTM(context, -point.x, -point.y);

    [self.layer renderInContext:context];

    CGContextRelease(context);
    CGColorSpaceRelease(colorSpace);
    UIColor *color = [UIColor colorWithRed:pixel[0]/255.0 green:pixel[1]/255.0 blue:pixel[2]/255.0 alpha:pixel[3]/255.0];

    return color;
}