在这里,我想在按钮点击时获得按钮动作事件的触摸 - B
当点击图像时(在图像的可见区域),点击手势方法将调用
但问题是图像在按钮上,它覆盖了按钮的某些部分我想在该覆盖部分上执行按钮操作事件 - A
我已经尝试但无法在覆盖部分上获得按钮操作:(
在这里,我想在按钮点击时获得按钮动作事件的触摸 - B
当点击图像时(在图像的可见区域),点击手势方法将调用
但问题是图像在按钮上,它覆盖了按钮的某些部分我想在该覆盖部分上执行按钮操作事件 - A
我已经尝试但无法在覆盖部分上获得按钮操作:(
在该部分上放一个透明按钮
更新
-(void)singleTapImageview:(UITapGestureRecognizer *)gesture
{
NSLog(@"single-tap");
CGPoint touchLocation = [gesture locationInView:self.imageViewParent];
float x = touchLocation.x;
float y = touchLocation.y;
//Using gesture recogniser you can get the current position of touch
UIImage* image = imageViewParent.image;
CFDataRef data = CGDataProviderCopyData(CGImageGetDataProvider(image.CGImage));
UInt8 *pixels = (UInt8 *)CFDataGetBytePtr(data);
UIGraphicsBeginImageContext(image.size);
[image drawInRect:CGRectMake(0, 0, image.size.width, image.size.height)];
CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), 1);
CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), [UIColor redColor].CGColor);
int index = ((x + (y * (int)image.size.width)) * 4) + 3;
CGFloat alpha = pixels[index];
if (alpha == 0)
{
// call button acton
}
}
您可以通过为重叠按钮编写 hittest 函数来解决该问题。
在 hittest 中,您必须通过检查坐标来决定按下哪个按钮。
只需避免以这种方式将按钮与图像重叠即可。看起来很可怕。
对于更长期的解决方案,我建议与 UX 设计师和图形艺术家交朋友。如果你幸运的话,那甚至可能是同一个人。
您可以添加一个新的透明按钮,该按钮将与您的图像部分和现有按钮都重叠,具有框架
CGRectMake(button.frame.origin.x, button.frame.origin.y, button.frame.size.width, button.frame.size.height);