ダブルタップするとアプリが画像をズームインするようになりましたが、ダブルタップした場所はズームインしません! ダブルタップした座標を画像の中心にしたい!
私のコード:
.h ファイル内:
- (void)handleDoubleTap:(UIGestureRecognizer *)gestureRecognizer;
.m ファイル内:
UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleDoubleTap:)];
[doubleTap setNumberOfTapsRequired:2];
[self.scroll addGestureRecognizer:doubleTap];
- (void)handleDoubleTap:(UIGestureRecognizer *)gestureRecognizer {
if(self.scroll.zoomScale > scroll.minimumZoomScale)
[self.scroll setZoomScale:scroll.minimumZoomScale animated:YES];
else
[self.scroll setZoomScale:1.6 animated:YES];
}
次に何をすべきですか?
前もって感謝します!
/初心者