-(void)touchesBegan (TO A SPECIFIED UIIMAGEVIEW)

2019-09-01 05:25发布

Hi I want to make it so that if you touch an image that I put on the view the -(void)checkcollision happens. The -(void)checkcollision happens, but when I touch anything. How can I say it only works if i touch a specified image. e.g. a pimple:

IBOutlet UIImageView *pimple;
@property (nonatomic, retain) UIImageView *pimple;

here is the touchesBegan code

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {


    UITouch *myTouch = [[event allTouches] anyObject];
    [self checkcollision];
}


-(void)checkcollision {

    if (label.text = @"0") {
        label.text = @"1";
    }

    pimple.hidden = YES;
}

2条回答
够拽才男人
2楼-- · 2019-09-01 05:34

There are two options:

  1. Subclass UIImageView and define your own handler
  2. Check sender - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event and compare it to your UIImageView instance.
查看更多
男人必须洒脱
3楼-- · 2019-09-01 05:48
CGPoint point = [myTouch locationInView:pimple];
if ( CGRectContainsPoint(pimple.bounds, point) ) {
    ... Touch detected.
}

Alternatively you can consider gesture recognizers. You can use a tap recognizer for this case.

查看更多
登录 后发表回答