これは私が私のプロジェクトで使用したものであり、うまく機能しました。
UITapGestureRecognizer *singleFingerTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTap:)];
[self.view addGestureRecognizer:singleFingerTap];
- (void)handleSingleTap:(UITapGestureRecognizer *)recognizer {
CGPoint location = [recognizer locationInView:[recognizer.view superview]];
//Do stuff here...
// I assume that your imgview is imgView11
if (imgView11.frame.origin.x < location.x && location.x < something
&& imgView11.frame.origin.y < location.y && location.y < something) {
largeImgView.image = imgView11.image;
}
}
あなたがあなたのコードを共有することができれば、私はあなたの問題を解決するために私の答えを編集します