我想知道只有当我触摸有颜色的部分时才能实现可拖动对象。如果我有一个带有大量透明填充的imageView
,我希望用户只能在触摸图像时移动它,而不是在他触摸图像视图中的任何位置时移动它。
我正在为对象添加手势识别器:
UIPanGestureRecognizer *panGestureReconizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(dragObjectWasMoved:)];
答案 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;
}