我现在正在尝试使用代码下面的代码制作波纹动画,我每次都在同一位置获取动画
CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:2.0f];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
[animation setType:@"rippleEffect" ];
[imgView.layer addAnimation:animation forKey:NULL];
但我想在 imageview 上的触摸点上获得动画意味着动画将在用户点击 UIImageView 的那一点发生